在 Windows 资源管理器中显示文件数和子文件夹大小

在 Windows 资源管理器中显示文件数和子文件夹大小

假设我打开了资源管理器,左侧窗格中显示了文件夹树结构,右侧窗格中显示了子文件夹和文件。

有没有办法让我在右侧窗格中看到文件夹下的文件数量以及子文件夹中所有数据的总大小?

答案1

我在工作服务器上使用 FolderSize 来提高管理效率。它本质上是一个 Windows 资源管理器插件,允许您显示文件夹子项(包括文件和文件夹)及其大小。

http://foldersize.sourceforge.net/

答案2

使用默认的 Windows 资源管理器无法做到这一点,您需要某种插件来汇总这些信息(或手动检查它们)。但是,您可以通过“dir /S”从命令 Shell 获取此信息(尽管方式不太好)。运行“dir /?”获取其他选项。例如:

C:\Users\Josh\Temp\apache-ant-1.8.1>dir /S
 Volume in drive C has no label.
 Volume Serial Number is D819-69BC

 Directory of C:\Users\Josh\Temp\apache-ant-1.8.1

09/06/2010  06:07 PM    <DIR>          .
09/06/2010  06:07 PM    <DIR>          ..
09/06/2010  06:06 PM    <DIR>          bin
09/06/2010  06:07 PM    <DIR>          docs
09/06/2010  06:07 PM    <DIR>          etc
04/30/2010  06:03 PM             7,920 fetch.xml
04/30/2010  06:03 PM             4,566 get-m2.xml
04/30/2010  06:03 PM               128 INSTALL
04/30/2010  06:03 PM            77,892 KEYS
09/06/2010  06:08 PM    <DIR>          lib
04/30/2010  06:03 PM            15,561 LICENSE
04/30/2010  06:03 PM               224 NOTICE
04/30/2010  06:03 PM             4,216 README
04/30/2010  06:03 PM           197,028 WHATSNEW
               8 File(s)        307,535 bytes

 Directory of C:\Users\Josh\Temp\apache-ant-1.8.1\bin

09/06/2010  06:06 PM    <DIR>          .
09/06/2010  06:06 PM    <DIR>          ..
04/30/2010  06:02 PM             9,997 ant
04/30/2010  06:02 PM             7,706 ant.bat
04/30/2010  06:02 PM             2,857 ant.cmd
04/30/2010  06:02 PM             3,410 antenv.cmd
04/30/2010  06:02 PM               861 antRun
04/30/2010  06:02 PM             1,536 antRun.bat
04/30/2010  06:02 PM             2,199 antRun.pl
04/30/2010  06:02 PM             3,219 complete-ant-cmd.pl
04/30/2010  06:02 PM             4,315 envset.cmd
04/30/2010  06:02 PM             1,116 lcp.bat
04/30/2010  06:02 PM             4,422 runant.pl
04/30/2010  06:02 PM             3,396 runant.py
04/30/2010  06:02 PM             1,817 runrc.cmd
              13 File(s)         46,851 bytes

 Directory of C:\Users\Josh\Temp\apache-ant-1.8.1\docs
...

答案3

对于其他可能偶然发现这个问题并需要答案的人 -来自 sysinternals 的 DU

使用方式与 unix 实用程序类似。

答案4

如果其他人正在寻找某些东西,可以使用免费工具http://www.jam-software.com/treesize_free/

相关内容