0

我正在寻找一个 DOS 命令,它将列出 C 驱动器顶层的目录和文件,并列出它们的完整大小(即通过递归分析 - 但只返回顶层大小)。

有什么我可以在命令行上运行的东西吗?

4

1 回答 1

0

Turns out the trick to this is to fire up cygwin and run

du -k . | egrep -v "\./.*/.*" | sort -n
于 2013-08-09T09:19:21.853 回答