std::experimental::filesystem::path::string,wstring,u8string,...
来自 cppreference.com
< cpp | experimental | fs | path
template< class CharT, class Traits = std::char_traits<CharT>, class Alloc = std::allocator<CharT> > |
(1) | (文件系统 TS) |
(2) | (文件系统 TS) | |
std::string string() const; |
||
std::wstring wstring() const; |
||
std::string u8string() const; |
||
std::u16string u16string() const; |
||
std::u32string u32string() const; |
||
返回以本机路径格式表示的内部路径名,并转换为指定的字符串类型。任何转换都由 todo 指定。
1) 所有内存分配都由 a 执行。
2)
u8string()
情况下编码始终为 UTF-8。内容 |
[编辑] 参数
(无)
[编辑] 返回值
以本机路径格式表示的内部路径名,并转换为指定的字符串类型。
[编辑] 异常
可能引发实现定义的异常。
[编辑] 示例
运行此代码
#include <clocale> #include <cstdio> #include <experimental/filesystem> #include <fstream> #include <iostream> namespace fs = std::experimental::filesystem; int main() { std::setlocale(LC_ALL, "en_US.utf8"); std::locale::global(std::locale("en_US.utf8")); fs::path p = fs::u8path(u8"要らない.txt"); // native string representation can be used with OS APIs std::ofstream(p) << "File contents"; // this uses operator string() if (std::FILE* f = std::fopen(p.c_str(), "r")) { int ch; while ((ch=fgetc(f))!= EOF) putchar(ch); std::fclose(f); } // multibyte and wide representation can be used for output std::cout.imbue(std::locale()); std::cout << "\nFile name in narrow multibyte encoding: " << p.string() << '\n'; std::wcerr.imbue(std::locale()); std::wcerr << "File name in wide encoding: " << p.wstring() << '\n'; fs::remove(p); }
可能的输出
File contents File name in narrow multibyte encoding: 要らない.txt File name in wide encoding: 要らない.txt
[编辑] 另请参阅
以通用路径格式返回路径,并转换为字符串 (公有成员函数) |