boost::filesystem v3 - 正确的路径大小写
你好 有没有一种有效的方法来纠正给定 Windows 路径的大小写?
fs::path dir("c:/winDOWS"); --> C:/Windows?
(没有 Windows-API!)
Hi
Is there an efficient way of correct the case of an given windows path?
fs::path dir("c:/winDOWS"); --> C:/Windows?
(without Windows-API!)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果没有 Windows API,就不可能知道正确的情况。常见的 Windows 文件系统不区分大小写并保留大小写。
Windows api 执行此操作的方法是 GetFullPathName
Without the windows api it's impossible to know that the correct case is. The common windows filesystems are case-insensitive and case preserving.
The windows api way to do this is GetFullPathName
因为我来这里寻找同样的东西,所以我想我可以省去其他人的谷歌搜索。
可以在此 stackoverflow 线程中找到答案。
遗憾的是,这并不是如何使用 boost 而是使用 Windows API 来做到这一点。但至少它可以工作,而上面提到的 API 却不能。
Since I came here looking for the same thing I figured I would spare others a google.
An answer can be found in this stackoverflow thread.
It is sadly not how to do it with boost instead using the Windows API. But at least it works which the API mentioned above does not.