用户导航到文件夹,我将该文件夹位置保存到字符串中
我怎样才能做到这一点?
我希望用户单击一个按钮,然后弹出一个小窗口,让最终用户导航到 X 文件夹。然后我需要将文件夹的位置保存到字符串变量中。
StackOverflow 的智者们有什么帮助吗?
How can I do this?
I want a user to click a button and then a small window pops up and lets me end-user navigate to X folder. Then I need to save the location of the folder to a string variable.
Any help, wise sages of StackOverflow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
(如果您尚未进入 winform,请删除
this
)(remove
this
if you aren't already in a winform)如果您使用的是 Winforms,则可以使用 FolderBrowserDialog控制。 用户选择的路径将位于 SelectedPath 属性中。
If you're using Winforms, you can use a FolderBrowserDialog control. The path the user selects will be in the SelectedPath property.