Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在终端中查看文件夹(包括子文件夹)的属性,因为 Windows 给出了大小、文件数量、文件夹数量等属性......
您想做的所有事情都有单独的命令。例如:
总尺寸:
du -hc FOLDER
文件数:
find FOLDER -maxdepth 1 -type f | wc -l
文件夹数:
find FOLDER -maxdepth 1 -type d | wc -l
等等。通常,实现同一件事的方法不止一种。
使用ll或ls -l查看详细信息..
ll
ls -l