C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- std::filesystem::path
- std::filesystem::file_time_type
- std::filesystem::path::empty
- std::filesystem::u8path
- std::filesystem::filesystem_error
- std::filesystem::directory_entry
- std::filesystem::directory_iterator
- std::filesystem::recursive_directory_iterator
- std::filesystem::file_status
- std::filesystem::space_info
- std::filesystem::file_type
- std::filesystem::perms
- std::filesystem::perm_options
- std::filesystem::copy_options
- std::filesystem::directory_options
- std::filesystem::absolute
- std::filesystem::canonical, std::filesystem::weakly_canonical
- std::filesystem::relative, std::filesystem::proximate
- std::filesystem::copy
- std::filesystem::copy_file
- std::filesystem::copy_symlink
- std::filesystem::create_directory, std::filesystem::create_directories
- std::filesystem::create_hard_link
- std::filesystem::create_symlink, std::filesystem::create_directory_symlink
- std::filesystem::current_path
- std::filesystem::exists
- std::filesystem::equivalent
- std::filesystem::file_size
- std::filesystem::hard_link_count
- std::filesystem::last_write_time
- std::filesystem::permissions
- std::filesystem::read_symlink
- std::filesystem::remove, std::filesystem::remove_all
- std::filesystem::rename
- std::filesystem::resize_file
- std::filesystem::space
- std::filesystem::status, std::filesystem::symlink_status
- std::filesystem::temp_directory_path
- std::filesystem::is_block_file
- std::filesystem::is_character_file
- std::filesystem::is_directory
- std::filesystem::is_empty
- std::filesystem::status_known
- std::filesystem::is_fifo
- std::filesystem::is_other
- std::filesystem::is_regular_file
- std::filesystem::is_socket
- std::filesystem::is_symlink
- 注释
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
位置:首页 > C++ 参考手册 >文件系统库 >std::filesystem::path > std::filesystem::u8path
std::filesystem::u8path
定义于头文件 <filesystem>
|
||
template< class Source > path u8path( const Source& source ); |
(1) | (C++17 起) (C++20 中弃用) |
template< class InputIt > path u8path( InputIt first, InputIt last ); |
(2) | (C++17 起) (C++20 中弃用) |
从 UTF-8 编码的 char或 char8_t (C++20 起) 序列构造 path p
,源作为 std::string 或 std::string_view ,或空终止多字节字符串,或作为一对迭代器 [first, last) 提供。
- 若
path::value_type
是 char 且原生编码为 UTF-8 ,则直接如同以 path(source) 或 path(first, last) 构造 path 。这是使用 Unicode 的 POSIX 系统的典型情况,例如 Linux 。 - 否则,若
path::value_type
是 wchar_t 且原生编码是 UTF-16 (这是 Windows 上的情况),或若path::value_type
是 char16_t (原生编码保证为 UTF-16 )或 char32_t (原生编码保证为
UTF-32),则首先转换 UTF-8 字符序列为 path::string_type
类型的临时字符串 tmp
,然后如同以 path(tmp) 构造新 path
- 否则(对于非 UTF-8 窄字符编码与非 UTF-16 wchar_t ),首先转换 UTF-8 字符序列到 std::u32string 类型的临时 UTF-32 编码字符串
tmp
,然后如同用 path(tmp) 构造新 path (此 path 被采用于使用非 Unicode 多字节或单字节编码的文件系统的 POSIX 系统上)
参数
source | - | UTF-8 编码的 std::string 、 std::string_view ,指向空终止多字节字符串的指针,或指向空终止多字节字符串的以 char 为 value_type 的输入迭代器 |
first, last | - | 一对指定 UTF-8 编码字符序列的遗留输入迭代器 (LegacyInputIterator) |
类型要求 | ||
-InputIt 必须满足遗留输入迭代器 (LegacyInputIterator) 的要求。
| ||
-InputIt 的值类型必须是 char
|
返回值
将输入字符串从 UTF-8 转换到文件系统原生字符编码后,构造的路径。
异常
若内存分配失败则可能抛出 std::bad_alloc 。
注解
在原生路径格式异于通用路径格式的系统上( Windows 与 POSIX 均不是此种系统的例子),若此函数的参数使用通用格式,则它会被转换成原生格式。
示例
运行此代码
#include <cstdio> #ifdef _MSC_VER #include <io.h> #include <fcntl.h> #else #include <locale> #include <clocale> #endif #include <fstream> #include <iostream> #include <filesystem> namespace fs = std::filesystem; int main() { #ifdef _MSC_VER _setmode(_fileno(stderr), _O_WTEXT); #else std::setlocale(LC_ALL, ""); std::locale::global(std::locale("")); std::cout.imbue(std::locale()); std::wcerr.imbue(std::locale()); #endif fs::path p = fs::u8path(u8"要らない.txt"); std::ofstream(p) << "File contents"; // 在 LWG2676 前 MSVC 上使用 operator string_type() // ,其中 string_type 是 wstring ,仅根据非标准扩展工作 // LWG2676 后使用新的 fstream 构造函数 // 原生字符串表示可用于 OS API if (std::FILE* f = #ifdef _MSC_VER _wfopen(p.c_str(), L"r") #else std::fopen(p.c_str(), "r") #endif ) { int ch; while((ch=fgetc(f))!= EOF) putchar(ch); std::fclose(f); } // 多字节与宽字节表示可用于输出 std::cout << "\nFile name in narrow multibyte encoding: " << p.string() << '\n'; 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
参阅
(C++17) |
表示一个路径 (类) |