4

path.native_file_string()所以我尝试移植我的旧项目(从 boost 1.44到1.61)我发现没有boost::filesystem v3...

那么 in 的模拟是path.native_file_string()什么boost::filesystem v3?(我不想再使用 v2 但我需要像 native_file_string 这样的功能)

4

2 回答 2

4

如果您正在谈论path::external_file_string(目前native_file_string在 Boost.FileSystem v2 中没有),则相当于path::native. 这将返回主机操作系统格式的字符串,使用该系统本机的字符串类型(Windows 为 std::wstring,Linux 为 std::string 等)。

于 2011-06-18T19:32:24.427 回答
2

看这里: http: //www.boost.org/doc/libs/1_45_0/libs/filesystem/v3/doc/deprecated.html 对应的新名称

native_file_string()

细绳()

于 2014-02-14T11:07:53.793 回答