C# 设置Windows文件夹视图

发布于 2024-10-11 22:50:29 字数 188 浏览 2 评论 0原文

我想通过代码更改特定文件夹的视图。例如,在我的计算机上,我的默认首选项是查看列表中的所有文件夹,按类型排序并显示名称、修改日期、类型和大小列。我想做的是更改一个特定文件夹以仅查看小图标和文件名。

其背后的原因是我有一个 Web 浏览器控件指向我的应用程序之一中的共享目录。我希望用户之间的 UI 保持一致,那么有没有一种简单的方法可以做到这一点?

I'd like to change the view of a specific folder via code. For example, on my computer, my default preference is to view all folders in a list, sorted by type and display the name, date modified, type and size columns. What I'd like to do is to change one specific folder to view small icons and file name only.

The reason behind this is I have a web browser control pointing at a shared directory in one of my applications. I want the UI to be consistent from user to user, so is there an easy way to do this?

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

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

发布评论

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

评论(1

长梦不多时 2024-10-18 22:50:29

该信息保存在注册表中。

请查看:如何修改文件夹视图设置或自定义文件夹

在故障排除部分:

默认情况下,Windows XP 和 Windows
Server 2003 记住每个文件夹的
查看设置和自定义。这
数据仅限于 400 个文件夹,并且
存储在以下注册表项中:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell

HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam

Windows Vista 和 Windows Server 2008
而是使用以下注册表项
存储此信息:

HKCU\软件\课程\本地
设置\软件\微软\Windows\Shell

The information is saved in the registry.

Check this out: How to modify your folder view settings or to customize a folder

In the troubleshooting section:

By default, Windows XP and Windows
Server 2003 remember each folder's
view settings and customizations. This
data is limited to 400 folders and is
stored in the following registry keys:

HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell

HKEY_CURRENT_USER\Software\Microsoft\Windows\ShellNoRoam

Windows Vista and Windows Server 2008
instead use the following registry key
to store this information:

HKCU\Software\Classes\Local
Settings\Software\Microsoft\Windows\Shell

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