我的旧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
替换是什么?
答案 0 :(得分:9)