gpt4 book ai didi

c++ - 使用 boost 创建相对路径

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:18:27 24 4
gpt4 key购买 nike

我正在尝试使用 boost 创建相对路径。

我最初的计划是:

string base_directory;  // input
boost::filesystem::path base_path;
string other_directory; // input
boost::filesystem::path other_path;
// assume base_path is absolute - did that already (using complete()
// if path is relative, to root it in the current directory) ->
base_directory = base_path.string();

if (other_path.empty())
other_directory = base_directory;
else
{
other_path = boost::filesystem::path(other_directory);
if(!other_path.is_complete())
{
other_path = base_path / other_path;
other_directory = other_path.string();
}
if(!boost::filesystem::exists(boost::filesystem::path(other_path)))
{
boost::filesystem::create_directory(other_path);
}
}

如果 other_directory 是绝对的或只是一个名称(或相对于 base_directory 的内部),这工作正常。

但如果我尝试输入“..”或“../other”,我最终会得到奇怪的结构,例如“c:\test..”或“c:\test..\other”

如何正确创建相对路径,最好使用 boost ?我试图查看文档...但没有取得积极的成功。

我正在使用 Windows(我对 boost 的偏好是它应该是多平台的,我已经依赖它了)

编辑:我有 boost 1.47

感谢您的任何建议。

最佳答案

Boost 文件系统不知道 "C:\test" 指的是文件还是目录,因此它不会假定尾随 "\" 是正确的。

如果添加"\",就可以使用函数boost::filesystem::canonical()简化删除 ... 元素的路径。

other_path = boost::filesystem::path( other_directory + "\" );        
if(!other_path.is_complete())
{
other_path = boost::filesystem::canonical( base_path / other_path );

关于c++ - 使用 boost 创建相对路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16202876/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com