c# -folderBrowserDialog1 和网络驱动器
无论如何,是否可以将folderBrowserDialog 设置为在网络驱动器上的设置文件夹中启动?我知道它需要 Environment.SpecialFolders 但我没有看到我需要的东西......
Is there anyway to set the folderBrowserDialog to start in a set folder on a network drive? I know it takes Environment.SpecialFolders but I'm not seeing what I need in there...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将
SelectedPath
设置为网络上的路径。我认为文件夹选择器不可能扎根到网络路径。
Set
SelectedPath
to a path on the network.I don't think it's possible to a folder picker rooted to a network path.
如果您的意思是,FolderBrowserDialog 应该从已选择的特定文件夹开始,然后在调用 ShowDialog 之前设置 SelectedPath 属性。
如果您的意思是根到特定文件夹,则FolderBrowserDialog 只能根到SpecialFolders 值之一。
或者,使用 FolderView 之类的控件,它允许 root 到随机文件夹。此外,它是一个控件,因此您可以将其放置在您自己的窗体中。
免责声明:我在 LogicNP Software 工作,该公司是FolderView 的开发者。
If you mean, the FolderBrowserDialog should start with a specific folder already selected, then set the SelectedPath property before calling ShowDialog.
If you mean rooted to a specific folder, the FolderBrowserDialog can only be rooted to one of the SpecialFolders values.
Alternately, use a control like FolderView which allows rooting to a random folder. Further, its a control, so you can place it in your own form.
DISCLAIMER: I work for LogicNP Software, the developers of FolderView.