|
enum | std::filesystem::copy_options : unsigned short {
none,
skip_existing,
overwrite_existing,
update_existing,
recursive,
copy_symlinks,
skip_symlinks,
directories_only,
create_symlinks,
create_hard_links
} |
|
enum | std::filesystem::directory_options : unsigned char { none,
follow_directory_symlink,
skip_permission_denied
} |
|
enum | std::filesystem::file_type : signed char {
none,
not_found,
regular,
directory,
symlink,
block,
character,
fifo,
socket,
unknown
} |
|
enum | std::filesystem::perm_options : unsigned { replace,
add,
remove,
nofollow
} |
|
enum | std::filesystem::perms : unsigned {
none,
owner_read,
owner_write,
owner_exec,
owner_all,
group_read,
group_write,
group_exec,
group_all,
others_read,
others_write,
others_exec,
others_all,
all,
set_uid,
set_gid,
sticky_bit,
mask,
unknown
} |
|
|
void | std::filesystem::copy (const path &__from, const path &__to, copy_options __options) |
|
void | std::filesystem::copy (const path &__from, const path &__to, copy_options __options, error_code &) |
|
bool | std::filesystem::copy_file (const path &__from, const path &__to, copy_options __option) |
|
bool | std::filesystem::copy_file (const path &__from, const path &__to, copy_options __option, error_code &) |
|
path | std::filesystem::current_path () |
|
bool | std::filesystem::exists (file_status) noexcept |
|
uintmax_t | std::filesystem::file_size (const path &) |
|
uintmax_t | std::filesystem::file_size (const path &, error_code &) noexcept |
|
uintmax_t | std::filesystem::hard_link_count (const path &) |
|
uintmax_t | std::filesystem::hard_link_count (const path &, error_code &) noexcept |
|
bool | std::filesystem::is_other (file_status) noexcept |
|
bool | std::filesystem::is_regular_file (file_status) noexcept |
|
bool | std::filesystem::is_symlink (file_status) noexcept |
|
file_time_type | std::filesystem::last_write_time (const path &) |
|
file_time_type | std::filesystem::last_write_time (const path &, error_code &) noexcept |
|
copy_options & | std::filesystem::operator &= (copy_options &__x, copy_options __y) noexcept |
|
constexpr copy_options | std::filesystem::operator^ (copy_options __x, copy_options __y) noexcept |
|
copy_options & | std::filesystem::operator^= (copy_options &__x, copy_options __y) noexcept |
|
constexpr copy_options | std::filesystem::operator| (copy_options __x, copy_options __y) noexcept |
|
copy_options & | std::filesystem::operator|= (copy_options &__x, copy_options __y) noexcept |
|
constexpr copy_options | std::filesystem::operator~ (copy_options __x) noexcept |
|
void | std::filesystem::permissions (const path &, perms, perm_options, error_code &) noexcept |
|
path | std::filesystem::proximate (const path &__p, const path &__base, error_code &__ec) |
|
path | std::filesystem::relative (const path &__p, const path &__base, error_code &__ec) |
|
file_status | std::filesystem::status (const path &) |
|
file_status | std::filesystem::status (const path &, error_code &) noexcept |
|
bool | std::filesystem::status_known (file_status) noexcept |
|
file_status | std::filesystem::symlink_status (const path &) |
|
file_status | std::filesystem::symlink_status (const path &, error_code &) noexcept |
|
|
constexpr perms | std::filesystem::operator| (perms __x, perms __y) noexcept |
|
constexpr perms | std::filesystem::operator^ (perms __x, perms __y) noexcept |
|
constexpr perms | std::filesystem::operator~ (perms __x) noexcept |
|
perms & | std::filesystem::operator &= (perms &__x, perms __y) noexcept |
|
perms & | std::filesystem::operator|= (perms &__x, perms __y) noexcept |
|
perms & | std::filesystem::operator^= (perms &__x, perms __y) noexcept |
|
|
constexpr perm_options | std::filesystem::operator| (perm_options __x, perm_options __y) noexcept |
|
constexpr perm_options | std::filesystem::operator^ (perm_options __x, perm_options __y) noexcept |
|
constexpr perm_options | std::filesystem::operator~ (perm_options __x) noexcept |
|
perm_options & | std::filesystem::operator &= (perm_options &__x, perm_options __y) noexcept |
|
perm_options & | std::filesystem::operator|= (perm_options &__x, perm_options __y) noexcept |
|
perm_options & | std::filesystem::operator^= (perm_options &__x, perm_options __y) noexcept |
|
|
constexpr directory_options | std::filesystem::operator| (directory_options __x, directory_options __y) noexcept |
|
constexpr directory_options | std::filesystem::operator^ (directory_options __x, directory_options __y) noexcept |
|
constexpr directory_options | std::filesystem::operator~ (directory_options __x) noexcept |
|
directory_options & | std::filesystem::operator &= (directory_options &__x, directory_options __y) noexcept |
|
directory_options & | std::filesystem::operator|= (directory_options &__x, directory_options __y) noexcept |
|
directory_options & | std::filesystem::operator^= (directory_options &__x, directory_options __y) noexcept |
|
This is an internal header file, included by other library headers. Do not attempt to use it directly. Instead, include <filesystem>.
Definition in file bits/fs_fwd.h.