std::filesystem::file_status::file_status

std::filesystem::file_status::file_status

file_status() : file_status(std::filesystem::file_type::none) { }
(1) (since C++17)
file_status( const file_status& ) = default;
(2) (since C++17)
file_status( file_status&& ) = default;
(3) (since C++17)
explicit file_status(
  std::filesystem::file_type type,
  std::filesystem::perms permissions = std::filesystem::perms::unknown);
(4) (since C++17)

Constructs a new file_status object.

1) Default constructor that calls (4) with std::filesystem::file_type::none.
2-3) Copy and move constructors are defaulted.
4) Initializes the file status object with type as type and permissions as permissions.

Parameters

Exceptions

noexcept specification:
noexcept

Example

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

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部