std::filesystem::filesystem_error::filesystem_error

std::filesystem::filesystem_error::filesystem_error

filesystem_error( const std::string& what_arg,
                  std::error_code ec );
(1) (since C++17)
filesystem_error( const std::string& what_arg,
                  const std::filesystem::path& p1,
                  std::error_code ec );
(2) (since C++17)
filesystem_error( const std::string& what_arg,
                  const std::filesystem::path& p1,
                  const std::filesystem::path& p2,
                  std::error_code ec );
(3) (since C++17)

Constructs a new filesystem error object. The explanatory string is set to what_arg, error code is set to ec and optionally, the paths that were involved in the operation that resulted in the error, are set to p1 and p2.

Parameters

Example

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/filesystem/filesystem_error/filesystem_error

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部