- IO operations can fail.
- And they will fail!
- Either...
- throws
std::filesystem::filesystem_error
or... - returns
std::error_code
as output_parameter
- throws
Most functions have 2 signatures, one throwing and one noexcept
bool create_directory( const std::filesystem::path& p );
bool create_directory( const std::filesystem::path& p,
std::error_code& ec ) noexcept;
exists( p )
is_directory( p )
current_path()
temp_directory_path()
create_directory( p )
creates a directory in an existing pathcreate_directories( p )
creates a directory hierachy
remove(p)
delete a file or empty directoryremove_all(p)
delete a directory and everything insidecopy(from, to)
- copy file or directoryrename(old_p, new_p)
for (auto &entry: fs::directory_iterator(p)) {
// entry is a directory_entry const&
// each file or directory in p, including "."
}
std::filesytem::directory_entry
contains:
path()
relative to directorystatus()
is_regular_file()
,is_directory()
, etc.
(see also: recursive_directory_iterator
)