如何获取 C++ 中的完全限定路径名
是否有一个函数可以返回任何输入文件的完全限定路径名?
我在想类似的事情:
LPCSTR path = "foo.bar"
LPCSTR fullPath = FullyQualifiedPath(path);
//fullPath now equals C:\path\to\foo.bar
谢谢
Is there a function that returns the fully qualified path name for any inputted file?
I'm thinking of something like:
LPCSTR path = "foo.bar"
LPCSTR fullPath = FullyQualifiedPath(path);
//fullPath now equals C:\path\to\foo.bar
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Win32 中,调用
GetFullPathName
函数。In Win32, call the
GetFullPathName
function.使用 boost:: 文件系统
http://www.boost.org/doc /libs/1_44_0/libs/filesystem/v2/doc/index.htm
Use boost::filesystem
http://www.boost.org/doc/libs/1_44_0/libs/filesystem/v2/doc/index.htm