std::filesystem::filesystem_error
来自 cppreference.cn
< cpp | filesystem
定义于头文件 <filesystem> |
||
class filesystem_error; |
(C++17 起) | |
类 std::filesystem::filesystem_error
定义了一个异常对象,当 filesystem 库中抛出异常的函数重载失败时,会抛出此异常。
继承图
目录 |
[编辑] 成员函数
构造异常对象 (public 成员函数) | |
替换异常对象 (public 成员函数) | |
返回导致错误的操作中涉及的路径 (public 成员函数) | |
返回解释字符串 (public 成员函数) |
继承自 std::system_error
成员函数
返回错误码 ( std::system_error 的 public 成员函数) | |
[virtual] |
返回解释字符串 ( std::system_error 的虚 public 成员函数) |
继承自 std::exception
成员函数
[virtual] |
销毁异常对象 ( std::exception 的虚 public 成员函数) |
[virtual] |
返回解释字符串 ( std::exception 的虚 public 成员函数) |
[编辑] 注意
为了确保 filesystem_error
的复制函数是 noexcept,典型的实现会在一个单独分配的引用计数存储中存储一个对象,该对象包含 what() 的返回值和两个分别由 path1() 和 path2() 引用的 std::filesystem::path 对象。
目前 MS STL 实现 不符合规范:上述对象直接存储在 filesystem
对象中,这使得复制函数不是 noexcept。
[编辑] 示例
运行此代码
#include <filesystem> #include <iostream> #include <system_error> int main() { const std::filesystem::path from{"/none1/a"}, to{"/none2/b"}; try { std::filesystem::copy_file(from, to); // throws: files do not exist } catch (std::filesystem::filesystem_error const& ex) { std::cout << "what(): " << ex.what() << '\n' << "path1(): " << ex.path1() << '\n' << "path2(): " << ex.path2() << '\n' << "code().value(): " << ex.code().value() << '\n' << "code().message(): " << ex.code().message() << '\n' << "code().category(): " << ex.code().category().name() << '\n'; } // All functions have non-throwing equivalents std::error_code ec; std::filesystem::copy_file(from, to, ec); // does not throw std::cout << "\nNon-throwing form sets error_code: " << ec.message() << '\n'; }
可能的输出
what(): filesystem error: cannot copy file: No such file or directory [/none1/a] [/none2/b] path1(): "/none1/a" path2(): "/none2/b" code().value(): 2 code().message(): No such file or directory code().category(): generic Non-throwing form sets error_code: No such file or directory