📌  相关文章
📜  mb linux 中文件夹的大小 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:06.657000             🧑  作者: Mango

代码示例2
# Just use the du command:
du -sh -- *

# will give you the cumulative disk usage of all non-hidden directories,
# files etc in the current directory in human-readable format.

# You can use the df command to know the free space in the filesystem 
# containing the directory:
df -h .