Windows 上通过命令行获取符号链接文件信息

Windows 上通过命令行获取符号链接文件信息

有没有办法通过 Windows 上的命令行工具获取符号文件信息(或元数据?):

文件信息

答案1

如何从命令行显示文件的硬链接?

使用fsutil

例子:

F:\test>fsutil.exe hardlink list C:\Windows\System32\notepad.exe
\Windows\notepad.exe
\Windows\winsxs\amd64_microsoft-windows-notepadwin_31bf3856ad364e35_6.1.7600.16385_none_9ebebe8614be1470\notepad.exe
\Windows\winsxs\amd64_microsoft-windows-notepad_31bf3856ad364e35_6.1.7600.16385_none_cb0f7f2289b0c21a\notepad.exe
\Windows\System32\notepad.exe

用法:

F:\test>fsutil hardlink
---- HARDLINK Commands Supported ----

create          Create a hardlink
list            Enumerate hardlinks on a file

F:\test>

进一步阅读

相关内容