当使用boost::filesystem
将Qt UI包装在后端代码周围时,经常需要将boost::filesystem::path
转换为QString
,反之亦然。
执行这些转换的最佳方式是:
QString
s。这是我目前正在使用的,但非常欢迎改进建议。
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
}