将用户限制在 OpenFileDialog 中的特定目录
有什么方法可以限制用户仅从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用标准 .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.
您无法从应用程序中执行此操作。但是,可以使用操作系统上的用户管理来完成此操作。
You can't do it from the application. It can be however done using user management on the OS.