使用boost创建相对路径

时间:2013-04-24 21:53:45

标签: c++ boost filesystems relative-path

我正在尝试使用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的偏好是这应该是多平台的,我已经依赖它了)

编辑:我提升1.47

感谢您的任何建议。

1 个答案:

答案 0 :(得分:1)

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 );