如何枚举指向文件的所有 NTFS 硬链接的路径?
我可以使用 GetFileInformationByHandle 来确定与文件关联的硬链接数量。我如何枚举组成这些链接的路径?
例如,如果 C:\TEMP_1.BIN
和 C:\TEMP_2.BIN
是指向相同内容的硬链接,并且我从 GetFileInformationByHandle
确定> C:\TEMP_1.BIN
有 nNumberOfLinks=2
,我怎样才能发现另一个链接的路径? (例如C:\TEMP_2.BIN
)
GetFileInformationByHandle
: http://msdn.microsoft.com/en -us/library/aa363788%28v=VS.85%29.aspx
I can use GetFileInformationByHandle
to determine the number of hard links associated with a file. How can I enumerate the paths which make up those links?
For example, if C:\TEMP_1.BIN
and C:\TEMP_2.BIN
are hard links to the same content, and I determine from GetFileInformationByHandle
that C:\TEMP_1.BIN
has nNumberOfLinks=2
, how can I discover the path for the other link? (e.g. C:\TEMP_2.BIN
)
GetFileInformationByHandle
:
http://msdn.microsoft.com/en-us/library/aa363788%28v=VS.85%29.aspx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您正在寻找 FindFirstFileNameW,它告诉您文件的所有名称。
I think you're looking for FindFirstFileNameW, which tells you all of the names a file has.