从用户处获取目录
我正在寻找一个从用户那里获取目录路径的函数;我需要找个地方放东西。我尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在寻找 Win32 Shell API:SHBrowseForFolder
You are looking for the Win32 Shell API: SHBrowseForFolder
你可以使用
mkdir("your path") 这个函数在库中。
这是示例代码:
you can use
mkdir("your path") this function is in library.
here is a sample code: