如何检查 Windows 7 文件夹中使用了哪些符号链接
我一直在查看 Windows 7 符号链接(使用 mklink)[编辑 - 它们是Windows Vista、Windows Server 2003、Windows Server 2008]。是否可以以编程方式确定文件夹是否是符号链接?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 GetFileAttributes 并检查 FILE_ATTRIBUTE_REPARSE_POINT。
预计到达时间:由于您现在已澄清是通过 C# 执行此操作,因此您可以在本地执行此操作:
您可以在返回的枚举值中检查 ReparsePoint 标志。
Use GetFileAttributes and check for FILE_ATTRIBUTE_REPARSE_POINT.
ETA: Since you clarified now that you're doing this from C#, you can do this natively there:
You can check for the ReparsePoint flag in the returned enum value.