std::experimental::filesystem::path::append, std::experimental::filesystem::path::operator/=
来自 cppreference.com
< cpp | experimental | fs | path
path& operator/=( const path& p ); |
(1) | (文件系统 TS) |
template< class Source > path& operator/=( const Source& source ); |
(2) | (文件系统 TS) |
template< class Source > path& append( const Source& source ); |
(3) | (文件系统 TS) |
template< class InputIt > path& append( InputIt first, InputIt last ); |
(4) | (文件系统 TS) |
1) 首先,将首选目录分隔符附加到 this,除非以下条件之一为真
* 分隔符将是多余的 (*this 已经以分隔符结尾).
* *this 为空,或添加它会以某种方式将相对路径转换为绝对路径。
* p 为空路径。
* p.native() 以目录分隔符开头。
然后,将 p.native() 附加到 *this 所维护的路径名。
4) 与 (1) 相同,但接受任何指定多字符字符串的迭代器对。
内容 |
[编辑] 参数
p | - | 要附加的路径名 |
source | - | std::basic_string、以 null 结尾的多字符字符串或指向以 null 结尾的多字符序列的输入迭代器,表示路径名(以可移植或本机格式) |
first, last | - | 指定多字符序列的 LegacyInputIterators 对,表示路径名 |
类型要求 | ||
-InputIt 必须满足 LegacyInputIterator 的要求。 | ||
-InputIt 的值类型必须是编码字符类型之一 (char、wchar_t、char16_t 和 char32_t). |
[编辑] 返回值
*this
[编辑] 异常
可能在底层操作系统 API 错误上抛出 filesystem_error 或在内存分配失败时抛出 std::bad_alloc.
[编辑] 示例
运行此代码
#include <experimental/filesystem> #include <iostream> namespace fs = std::experimental::filesystem; int main() { fs::path p1 = "C:"; p1 /= "Users"; // does not insert a separator // "C:Users" is a relative path in Windows // adding directory separator would turn it to an absolute path std::cout << "\"C:\" / \"Users\" == " << p1 << '\n'; p1 /= "batman"; // inserts fs::path::preferred_separator, '\' on Windows std::cout << "\"C:\" / \"Users\" / \"batman\" == " << p1 << '\n'; }
可能的输出
"C:" / "Users" == "C:Users" "C:" / "Users" / "batman" == "C:Users\batman"
[编辑] 另请参见
连接两个路径,不引入目录分隔符 (公共成员函数) | |
使用目录分隔符连接两个路径 (函数) |