将用户限制在 OpenFileDialog 中的特定目录

发布于 2024-10-10 04:18:32 字数 51 浏览 5 评论 0原文

有什么方法可以限制用户仅从 C# 中的特定目录中选择文件吗?不应该允许它浏览其他文件夹。

Is there any way I can restrict a user to select files from only a particular directory in C#? It should not be allowed to browse other folders.

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

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

发布评论

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

评论(2

对你再特殊 2024-10-17 04:18:32

使用标准 .NET 包装器是不可能的。使用 FileOk 事件拒绝路径。

如果您可以信赖您的程序在 Vista 及更高版本上运行,那么您可以考虑使用 Windows API 代码包中的 CommonFileDialog 类。它有一个可以取消的FolderChanging 事件。

Not possible with the standard .NET wrappers. Reject the path with the FileOk event.

If you can count on your program running on Vista and up then you could consider using the CommonFileDialog class in the Windows API Code Pack. It has a FolderChanging event that can be canceled.

我一直都在从未离去 2024-10-17 04:18:32

您无法从应用程序中执行此操作。但是,可以使用操作系统上的用户管理来完成此操作。

You can't do it from the application. It can be however done using user management on the OS.

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