.NET 连接目录和 DirectInfo 问题

发布于 2024-11-23 15:17:00 字数 152 浏览 2 评论 0原文

我正在尝试访问 C:\Users\Public\Documents\ 下的信息,该信息在资源管理器上显示为 C:\Users\Public\Public Documents\ 。有没有办法能够使用 .NET C# 中的资源管理器中显示的路径名来访问联结下目录的 DirectoryInfo?

I am trying to access information under C:\Users\Public\Documents\ which displays as C:\Users\Public\Public Documents\ on explorer. Is there a way to be able to access the DirectoryInfo of a directory under the junction using the pathname displayed in explorer in .NET C#?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深巷少女 2024-11-30 15:17:01

您期望何时/如何获得 C:\users\public\publicdocuments 路径?

如果用户从资源管理器进行复制/粘贴,C:\users\public\documents 路径将被复制到剪贴板中。通过 SaveFileDialog 也会生成有效路径。

如果您需要访问 Windows 7 库的方法,可以尝试 Windows API 代码包 。例如,您可以通过 KnownFolders.PublicDocuments 访问“公共文档”。据我所知(我以前从未使用过它),仍然无法可靠地将 C:\ users\public\publicdocumentsDirectoryInfo 中,但您可能会更好地挖掘文档。

When/how are you expecting to get a C:\users\public\public documents path?

If a user goes to copy/paste from Explorer, the C:\users\public\documents path will be copied into the clipboard. Going through a SaveFileDialog also produces the valid path.

If you need a way to access Windows 7 libraries, you can give the Windows API Code Pack a go. You can then access "Public Documents as KnownFolders.PublicDocuments, for example. From what I can see (I've never used it before), there's still no way to reliably turn C:\users\public\public documents into a DirectoryInfo, but you might have better luck digging through the docs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文