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.
当使用 CLS 通过 LFTP 列出文件时,有没有办法显示列表中出现的任何文件夹的计算大小?这是我正在使用的:
cls -s -h --sort=date
结果如下:
3.7G bigfile.mp4 4.0K some.folder/ 4.0K another.folder/ 1.1G anotherfile.psd
所有文件夹都显示为只有 4.0K,这当然不能反映文件夹内容的总大小。我的 Google-fu 在这方面让我失望了:/
cls显示服务器报告的文件夹大小。在这种情况下,它是文件夹本身的大小,而不是嵌套文件的大小。要查看所有嵌套文件和目录的大小,请使用du -h命令。