用户导航到文件夹,我将该文件夹位置保存到字符串中

发布于 2024-08-02 04:21:39 字数 121 浏览 4 评论 0原文

我怎样才能做到这一点?

我希望用户单击一个按钮,然后弹出一个小窗口,让最终用户导航到 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 技术交流群。

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

发布评论

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

评论(3

思念满溢 2024-08-09 04:21:39
    using (FolderBrowserDialog dlg = new FolderBrowserDialog())
    {
        if (dlg.ShowDialog(this) == DialogResult.OK)
        {
            string s = dlg.SelectedPath;
        }
    }

(如果您尚未进入 winform,请删除 this

    using (FolderBrowserDialog dlg = new FolderBrowserDialog())
    {
        if (dlg.ShowDialog(this) == DialogResult.OK)
        {
            string s = dlg.SelectedPath;
        }
    }

(remove this if you aren't already in a winform)

冷默言语 2024-08-09 04:21:39

If you're using Winforms, you can use a FolderBrowserDialog control. The path the user selects will be in the SelectedPath property.

随心而道 2024-08-09 04:21:39
string path = null;
FolderBrowserDialog dlg = new ();
if (dlg.ShowDialog() == DialogResult.OK)
{
    path = dlg.SelectedPath;
}
string path = null;
FolderBrowserDialog dlg = new ();
if (dlg.ShowDialog() == DialogResult.OK)
{
    path = dlg.SelectedPath;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文