如何计算Ntfs卷上的硬链接,符号链接和连接


0

我知道一些声称要统计其中一个的程序,但我不知道任何可以算上这三个的程序。我想算上这三个并打印出如下列表:

硬链接:123

符号链接:456

交界处:789

是否有程序或Windows命令会执行此类操作?

Answers:


0

如果我在Windows中使用Cygwin,我可以运行命令:

find $directory -type l -exec echo symlinks \; -o -type f -links +1 -exec echo hardlinks \; | sort | uniq -c

哪个输出如此:

产生如下输出:

40个硬链接

164个符号链接

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.