boost::filesystem v3 - 正确的路径大小写

发布于 2024-10-22 23:52:49 字数 141 浏览 1 评论 0原文

你好 有没有一种有效的方法来纠正给定 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 技术交流群。

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

发布评论

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

评论(2

遇到 2024-10-29 23:52:49

如果没有 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文