使用boost::filesystem
将Qt UI围绕在后端代码周围时,经常需要将boost::filesystem::path
转换为QString
,反之亦然。
进行这些转换的最佳方法是什么?
QString
。答案 0 :(得分:0)
这是我目前正在使用的,但是非常欢迎提出改进建议。
boost::filesystem::path PathFromQString(const QString & filePath)
{
#ifdef _WIN32
auto * wptr = reinterpret_cast<const wchar_t*>(filePath.utf16());
return boost::filesystem::path(wptr, wptr + filePath.size());
#else
return boost::filesystem::path(filePath.toStdString());
#endif
}
QString QStringFromPath(const boost::filesystem::path & filePath)
{
#ifdef _WIN32
return QString::fromStdWString(filePath.generic_wstring());
#else
return QString::fromStdString(filePath.native());
#endif
}