std::filesystem::file_status::permissions
< cpp | filesystem | file status
std::filesystem::perms permissions() const noexcept; |
(1) | (C++17 起) |
void permissions( std::filesystem::perms perm ) noexcept; |
(2) | (C++17 起) |
访问文件权限信息。
1) 返回文件权限信息。
2) 设置文件权限为
perm
。参数
perm | - | 要设置的文件权限 |
返回值
1) 文件权限信息。
2) (无)
示例
本节未完成 原因:暂无示例 |