std::filesystem::filesystem_error::what

来自cppreference.com
 
 
 
 
const char* what() const noexcept override;
(C++17 起)

返回解释性字节字符串。此解释性字符串含有在 构造时传递的解释字符串。鼓励实现在返回的字符串中包含原生格式的 path1()path2() 的路径名,还有 std::system_error::what() 字符串。

参数

(无)

示例