从用户处获取目录

发布于 2024-08-12 06:20:50 字数 212 浏览 6 评论 0原文

我正在寻找一个从用户那里获取目录路径的函数;我需要找个地方放东西。我尝试使用 GetOpenFileName() 和 .dir 作为过滤器,但没有任何乐趣。我发现了一个名为 GetDirectoryViaBrowse() 的东西,听起来它可能会做我想要的事情,但它是某个向导制作包的一部分,而我的 Visual Studio 对它一无所知。我想要一些简单的非 .NET 小部件。

有这样的事吗?

I'm looking for a function to get a directory path from the user; I need to solicit a place to put things. I tried using GetOpenFileName() with .dir as a filter but no joy. I found something called GetDirectoryViaBrowse() that sounds like it might do what I want but it's part of some wizard making package and my Visual Studio knows nothing about it. I'd like some simple non .NET widget.

Is there such a thing?

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

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

发布评论

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

评论(2

高冷爸爸 2024-08-19 06:20:50

您正在寻找 Win32 Shell API:SHBrowseForFolder

You are looking for the Win32 Shell API: SHBrowseForFolder

神回复 2024-08-19 06:20:50

你可以使用
mkdir("your path") 这个函数在库中。
这是示例代码:

#include <direct.h>
#include <iostream>
#include <cstring>
using namespace std;
int main()
  {
    char folder[50];
    char path[]="c:/";
    cin>>folder;
    strcat(path,folder);
    mkdir(path);
    cout<<"Your folder has been created in drive C.";
    return 0;
    }

you can use
mkdir("your path") this function is in library.
here is a sample code:

#include <direct.h>
#include <iostream>
#include <cstring>
using namespace std;
int main()
  {
    char folder[50];
    char path[]="c:/";
    cin>>folder;
    strcat(path,folder);
    mkdir(path);
    cout<<"Your folder has been created in drive C.";
    return 0;
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文