简介
- BOOST常用编程技巧
boost::filesystem::path 转 std::string
要将 boost::filesystem::path
转换为 std::string
,你可以使用 boost::filesystem::path
对象的 string()
成员函数。这个函数返回一个表示路径的 std::string
。以下是一个示例:
1 |
|
在这个示例中,filePath.string()
函数将 boost::filesystem::path
对象 filePath
转换为一个 std::string
,然后我们将其打印出来。