如何在 C# 中读取网络快捷方式文件夹的内容?

发布于 2024-12-27 22:57:20 字数 348 浏览 1 评论 0原文

我的网络快捷方式文件夹位于此处:

C:\Users\elan\AppData\Roaming\Microsoft\Windows\Network Shortcuts

此文件夹包含许多我定义/配置的 Web 文件夹的快捷方式。这些在窗口资源管理器中可见。如何在代码中获取此文件夹的快捷方式文件的目录列表?我尝试了以下操作,但它没有返回任何文件:

string path = @"C:\Users\elan\AppData\Roaming\Microsoft\Windows\Network Shortcuts";
string[] files = Directory.GetFiles(path);

My network shortcuts folder is located here:

C:\Users\elan\AppData\Roaming\Microsoft\Windows\Network Shortcuts

This folder contains a number of shortcuts to web folders that I defined/configured. These are visible in Window Explorer. How do I get a directory listing of this folder to the shortcut files in code? I tried the below, but it returns no files:

string path = @"C:\Users\elan\AppData\Roaming\Microsoft\Windows\Network Shortcuts";
string[] files = Directory.GetFiles(path);

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

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

发布评论

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

评论(1

秋千易 2025-01-03 22:57:20

事实证明,“网络快捷方式”文件夹中的条目不是文件,而是目录。以下工作有效:

string path = @"C:\Users\elan\AppData\Roaming\Microsoft\Windows\Network Shortcuts";
string[] dirs  = Directory.GetDirectories(path);

It turns out the entries in the Network Shortcuts folder are not files but are directories. The following worked:

string path = @"C:\Users\elan\AppData\Roaming\Microsoft\Windows\Network Shortcuts";
string[] dirs  = Directory.GetDirectories(path);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文