如何转换`boost :: filesystem :: path`和`QString`?

问题描述 投票:0回答:1

当使用boost::filesystem将Qt UI包装在后端代码周围时,经常需要将boost::filesystem::path转换为QString,反之亦然。

执行这些转换的最佳方式是:

  1. 是跨平台的
  2. 无损地保留编码
  3. 正如Qt的政策一样,在所有平台上生成包含常规斜杠的QStrings。
  4. 高效并避免不必要的副本
qt qstring boost-filesystem
1个回答
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
}
© www.soinside.com 2019 - 2024. All rights reserved.