Boost文件系统完全替换

时间:2012-02-20 12:44:34

标签: c++ boost-filesystem

我的旧Boost代码:

std::string CombinePath(const char* left, const char* right)
{
    boost::filesystem::path p =  boost::filesystem::complete( 
        boost::filesystem::path(right, boost::filesystem::native), 
        boost::filesystem::path(left, boost::filesystem::native) );

    return p.string();
}

在新的Boost版本中,仅使用#define BOOST_FILESYSTEM_VERSION 2进行编译。在新的Boost版本中,complete替换是什么?

1 个答案:

答案 0 :(得分:9)