libstdc++
Collaboration diagram for Filesystem TS:

Files

file  experimental/filesystem
 

Classes

class  std::experimental::filesystem::v1::filesystem_error
 
class  std::experimental::filesystem::v1::path::iterator
 
class  std::experimental::filesystem::v1::path
 

Typedefs

typedef iterator std::experimental::filesystem::v1::path::const_iterator
 
typedef ptrdiff_t std::experimental::filesystem::v1::directory_iterator::difference_type
 
typedef ptrdiff_t std::experimental::filesystem::v1::recursive_directory_iterator::difference_type
 
using std::experimental::filesystem::v1::path::iterator::difference_type = std::ptrdiff_t
 
using std::experimental::filesystem::file_time_type = std::chrono::system_clock::time_point
 
typedef input_iterator_tag std::experimental::filesystem::v1::directory_iterator::iterator_category
 
typedef input_iterator_tag std::experimental::filesystem::v1::recursive_directory_iterator::iterator_category
 
using std::experimental::filesystem::v1::path::iterator::iterator_category = std::bidirectional_iterator_tag
 
typedef const directory_entry * std::experimental::filesystem::v1::directory_iterator::pointer
 
typedef const directory_entry * std::experimental::filesystem::v1::recursive_directory_iterator::pointer
 
using std::experimental::filesystem::v1::path::iterator::pointer = const path *
 
typedef const directory_entry & std::experimental::filesystem::v1::directory_iterator::reference
 
typedef const directory_entry & std::experimental::filesystem::v1::recursive_directory_iterator::reference
 
using std::experimental::filesystem::v1::path::iterator::reference = const path &
 
typedef std::basic_string< value_type > std::experimental::filesystem::v1::path::string_type
 
typedef directory_entry std::experimental::filesystem::v1::directory_iterator::value_type
 
typedef directory_entry std::experimental::filesystem::v1::recursive_directory_iterator::value_type
 
typedef char std::experimental::filesystem::v1::path::value_type
 
using std::experimental::filesystem::v1::path::iterator::value_type = path
 

Enumerations

enum class  std::experimental::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 class  directory_options : unsigned char { none , follow_directory_symlink , skip_permission_denied }
 
enum class  file_type : signed char {
  none , not_found , regular , directory ,
  symlink , block , character , fifo ,
  socket , unknown
}
 
enum class  std::experimental::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 , add_perms ,
  remove_perms , symlink_nofollow
}
 

Functions

 std::experimental::filesystem::v1::directory_entry::directory_entry (const directory_entry &)=default
 
 std::experimental::filesystem::v1::directory_entry::directory_entry (const filesystem::path &__p)
 
 std::experimental::filesystem::v1::directory_entry::directory_entry (directory_entry &&) noexcept=default
 
 std::experimental::filesystem::v1::directory_iterator::directory_iterator (const directory_iterator &__rhs)=default
 
 std::experimental::filesystem::v1::directory_iterator::directory_iterator (const path &__p)
 
 std::experimental::filesystem::v1::directory_iterator::directory_iterator (const path &__p, directory_options __options)
 
 std::experimental::filesystem::v1::directory_iterator::directory_iterator (const path &__p, directory_options __options, error_code &__ec) noexcept
 
 std::experimental::filesystem::v1::directory_iterator::directory_iterator (const path &__p, error_code &__ec) noexcept
 
 std::experimental::filesystem::v1::directory_iterator::directory_iterator (directory_iterator &&__rhs) noexcept=default
 
 std::experimental::filesystem::v1::file_status::file_status (const file_status &) noexcept=default
 
 std::experimental::filesystem::v1::file_status::file_status (file_status &&) noexcept=default
 
 std::experimental::filesystem::v1::file_status::file_status (file_type __ft=file_type::none, perms __prms=perms::unknown) noexcept
 
 std::experimental::filesystem::v1::filesystem_error::filesystem_error (const string &__what_arg, const path &__p1, const path &__p2, error_code __ec)
 
 std::experimental::filesystem::v1::filesystem_error::filesystem_error (const string &__what_arg, const path &__p1, error_code __ec)
 
 std::experimental::filesystem::v1::filesystem_error::filesystem_error (const string &__what_arg, error_code __ec)
 
 std::experimental::filesystem::v1::path::iterator::iterator (const iterator &)=default
 
template<typename _InputIterator , typename _Require = __detail::_Path<_InputIterator, _InputIterator>>
 std::experimental::filesystem::v1::path::path (_InputIterator __first, _InputIterator __last)
 
template<typename _InputIterator , typename _Require = __detail::_Path<_InputIterator, _InputIterator>, typename _Require2 = __detail::__value_type_is_char<_InputIterator>>
 std::experimental::filesystem::v1::path::path (_InputIterator __first, _InputIterator __last, const locale &__loc)
 
template<typename _Source , typename _Require = __detail::_Path<_Source>>
 std::experimental::filesystem::v1::path::path (_Source const &__source)
 
template<typename _Source , typename _Require = __detail::_Path<_Source>, typename _Require2 = __detail::__value_type_is_char<_Source>>
 std::experimental::filesystem::v1::path::path (_Source const &__source, const locale &__loc)
 
 std::experimental::filesystem::v1::path::path (const path &__p)=default
 
 std::experimental::filesystem::v1::path::path (path &&__p) noexcept
 
 std::experimental::filesystem::v1::path::path (string_type &&__source)
 
 std::experimental::filesystem::v1::recursive_directory_iterator::recursive_directory_iterator (const path &__p)
 
 std::experimental::filesystem::v1::recursive_directory_iterator::recursive_directory_iterator (const path &__p, directory_options __options)
 
 std::experimental::filesystem::v1::recursive_directory_iterator::recursive_directory_iterator (const path &__p, directory_options __options, error_code &__ec) noexcept
 
 std::experimental::filesystem::v1::recursive_directory_iterator::recursive_directory_iterator (const path &__p, error_code &__ec) noexcept
 
 std::experimental::filesystem::v1::recursive_directory_iterator::recursive_directory_iterator (const recursive_directory_iterator &)=default
 
 std::experimental::filesystem::v1::recursive_directory_iterator::recursive_directory_iterator (recursive_directory_iterator &&)=default
 
path std::experimental::filesystem::absolute (const path &__p, const path &__base=current_path())
 
template<typename _InputIterator >
__detail::_Path< _InputIterator, _InputIterator > & std::experimental::filesystem::v1::path::append (_InputIterator __first, _InputIterator __last)
 
template<typename _Source >
__detail::_Path< _Source > & std::experimental::filesystem::v1::path::append (_Source const &__source)
 
template<typename _InputIterator >
__detail::_Path< _InputIterator, _InputIterator > & std::experimental::filesystem::v1::path::assign (_InputIterator __first, _InputIterator __last)
 
template<typename _Source >
__detail::_Path< _Source > & std::experimental::filesystem::v1::path::assign (_Source const &__source)
 
void std::experimental::filesystem::v1::directory_entry::assign (const filesystem::path &__p)
 
pathstd::experimental::filesystem::v1::path::assign (string_type &&__source)
 
iterator std::experimental::filesystem::v1::path::begin () const
 
directory_iterator std::experimental::filesystem::begin (directory_iterator __iter) noexcept
 
recursive_directory_iterator std::experimental::filesystem::begin (recursive_directory_iterator __iter) noexcept
 
const value_type * std::experimental::filesystem::v1::path::c_str () const noexcept
 
path std::experimental::filesystem::canonical (const path &__p, const path &__base, error_code &__ec)
 
path std::experimental::filesystem::canonical (const path &__p, const path &__base=current_path())
 
path std::experimental::filesystem::canonical (const path &__p, error_code &__ec)
 
void std::experimental::filesystem::v1::path::clear () noexcept
 
int std::experimental::filesystem::v1::path::compare (const basic_string_view< value_type > __s) const
 
int std::experimental::filesystem::v1::path::compare (const path &__p) const noexcept
 
int std::experimental::filesystem::v1::path::compare (const string_type &__s) const
 
int std::experimental::filesystem::v1::path::compare (const value_type *__s) const
 
template<typename _InputIterator >
__detail::_Path< _InputIterator, _InputIterator > & std::experimental::filesystem::v1::path::concat (_InputIterator __first, _InputIterator __last)
 
template<typename _Source >
__detail::_Path< _Source > & std::experimental::filesystem::v1::path::concat (_Source const &__x)
 
void std::experimental::filesystem::copy (const path &__from, const path &__to)
 
void std::experimental::filesystem::copy (const path &__from, const path &__to, copy_options __options)
 
void std::experimental::filesystem::copy (const path &__from, const path &__to, copy_options __options, error_code &) noexcept
 
void std::experimental::filesystem::copy (const path &__from, const path &__to, error_code &__ec) noexcept
 
bool std::experimental::filesystem::copy_file (const path &__from, const path &__to)
 
bool std::experimental::filesystem::copy_file (const path &__from, const path &__to, copy_options __option)
 
bool std::experimental::filesystem::copy_file (const path &__from, const path &__to, copy_options __option, error_code &) noexcept
 
bool std::experimental::filesystem::copy_file (const path &__from, const path &__to, error_code &__ec) noexcept
 
void std::experimental::filesystem::copy_symlink (const path &__existing_symlink, const path &__new_symlink)
 
void std::experimental::filesystem::copy_symlink (const path &__existing_symlink, const path &__new_symlink, error_code &__ec) noexcept
 
bool std::experimental::filesystem::create_directories (const path &__p)
 
bool std::experimental::filesystem::create_directories (const path &__p, error_code &__ec) noexcept
 
bool std::experimental::filesystem::create_directory (const path &__p)
 
bool std::experimental::filesystem::create_directory (const path &__p, const path &attributes)
 
bool std::experimental::filesystem::create_directory (const path &__p, const path &attributes, error_code &__ec) noexcept
 
bool std::experimental::filesystem::create_directory (const path &__p, error_code &__ec) noexcept
 
void std::experimental::filesystem::create_directory_symlink (const path &__to, const path &__new_symlink)
 
void std::experimental::filesystem::create_directory_symlink (const path &__to, const path &__new_symlink, error_code &__ec) noexcept
 
void std::experimental::filesystem::create_hard_link (const path &__to, const path &__new_hard_link)
 
void std::experimental::filesystem::create_hard_link (const path &__to, const path &__new_hard_link, error_code &__ec) noexcept
 
void std::experimental::filesystem::create_symlink (const path &__to, const path &__new_symlink)
 
void std::experimental::filesystem::create_symlink (const path &__to, const path &__new_symlink, error_code &__ec) noexcept
 
path std::experimental::filesystem::current_path ()
 
void std::experimental::filesystem::current_path (const path &__p)
 
void std::experimental::filesystem::current_path (const path &__p, error_code &__ec) noexcept
 
path std::experimental::filesystem::current_path (error_code &__ec)
 
int std::experimental::filesystem::v1::recursive_directory_iterator::depth () const
 
void std::experimental::filesystem::v1::recursive_directory_iterator::disable_recursion_pending ()
 
bool std::experimental::filesystem::v1::path::empty () const noexcept
 
iterator std::experimental::filesystem::v1::path::end () const
 
directory_iterator std::experimental::filesystem::end (directory_iterator) noexcept
 
recursive_directory_iterator std::experimental::filesystem::end (recursive_directory_iterator) noexcept
 
bool std::experimental::filesystem::equivalent (const path &__p1, const path &__p2)
 
bool std::experimental::filesystem::equivalent (const path &__p1, const path &__p2, error_code &__ec) noexcept
 
bool std::experimental::filesystem::exists (const path &__p)
 
bool std::experimental::filesystem::exists (const path &__p, error_code &__ec) noexcept
 
bool std::experimental::filesystem::exists (file_status __s) noexcept
 
path std::experimental::filesystem::v1::path::extension () const
 
uintmax_t std::experimental::filesystem::file_size (const path &__p)
 
uintmax_t std::experimental::filesystem::file_size (const path &__p, error_code &__ec) noexcept
 
path std::experimental::filesystem::v1::path::filename () const
 
std::string std::experimental::filesystem::v1::path::generic_string () const
 
template<typename _CharT , typename _Traits = std::char_traits<_CharT>, typename _Allocator = std::allocator<_CharT>>
std::basic_string< _CharT, _Traits, _Allocator > std::experimental::filesystem::v1::path::generic_string (const _Allocator &__a=_Allocator()) const
 
std::u16string std::experimental::filesystem::v1::path::generic_u16string () const
 
std::u32string std::experimental::filesystem::v1::path::generic_u32string () const
 
std::string std::experimental::filesystem::v1::path::generic_u8string () const
 
std::wstring std::experimental::filesystem::v1::path::generic_wstring () const
 
uintmax_t std::experimental::filesystem::hard_link_count (const path &__p)
 
uintmax_t std::experimental::filesystem::hard_link_count (const path &__p, error_code &__ec) noexcept
 
bool std::experimental::filesystem::v1::path::has_extension () const
 
bool std::experimental::filesystem::v1::path::has_filename () const
 
bool std::experimental::filesystem::v1::path::has_parent_path () const
 
bool std::experimental::filesystem::v1::path::has_relative_path () const
 
bool std::experimental::filesystem::v1::path::has_root_directory () const
 
bool std::experimental::filesystem::v1::path::has_root_name () const
 
bool std::experimental::filesystem::v1::path::has_root_path () const
 
bool std::experimental::filesystem::v1::path::has_stem () const
 
directory_iterator & std::experimental::filesystem::v1::directory_iterator::increment (error_code &__ec) noexcept
 
recursive_directory_iterator & std::experimental::filesystem::v1::recursive_directory_iterator::increment (error_code &__ec) noexcept
 
bool std::experimental::filesystem::v1::path::is_absolute () const
 
bool std::experimental::filesystem::is_block_file (const path &__p)
 
bool std::experimental::filesystem::is_block_file (const path &__p, error_code &__ec) noexcept
 
bool std::experimental::filesystem::is_block_file (file_status __s) noexcept
 
bool std::experimental::filesystem::is_character_file (const path &__p)
 
bool std::experimental::filesystem::is_character_file (const path &__p, error_code &__ec) noexcept
 
bool std::experimental::filesystem::is_character_file (file_status __s) noexcept
 
bool std::experimental::filesystem::is_directory (const path &__p)
 
bool std::experimental::filesystem::is_directory (const path &__p, error_code &__ec) noexcept
 
bool std::experimental::filesystem::is_directory (file_status __s) noexcept
 
bool std::experimental::filesystem::is_empty (const path &__p)
 
bool std::experimental::filesystem::is_empty (const path &__p, error_code &__ec) noexcept
 
bool std::experimental::filesystem::is_fifo (const path &__p)
 
bool std::experimental::filesystem::is_fifo (const path &__p, error_code &__ec) noexcept
 
bool std::experimental::filesystem::is_fifo (file_status __s) noexcept
 
bool std::experimental::filesystem::is_other (const path &__p)
 
bool std::experimental::filesystem::is_other (const path &__p, error_code &__ec) noexcept
 
bool std::experimental::filesystem::is_other (file_status __s) noexcept
 
bool std::experimental::filesystem::is_regular_file (const path &__p)
 
bool std::experimental::filesystem::is_regular_file (const path &__p, error_code &__ec) noexcept
 
bool std::experimental::filesystem::is_regular_file (file_status) noexcept
 
bool std::experimental::filesystem::v1::path::is_relative () const
 
bool std::experimental::filesystem::is_socket (const path &__p)
 
bool std::experimental::filesystem::is_socket (const path &__p, error_code &__ec) noexcept
 
bool std::experimental::filesystem::is_socket (file_status __s) noexcept
 
bool std::experimental::filesystem::is_symlink (const path &__p)
 
bool std::experimental::filesystem::is_symlink (const path &__p, error_code &__ec) noexcept
 
bool std::experimental::filesystem::is_symlink (file_status) noexcept
 
file_time_type std::experimental::filesystem::last_write_time (const path &__p)
 
file_time_type std::experimental::filesystem::last_write_time (const path &__p, error_code &__ec) noexcept
 
void std::experimental::filesystem::last_write_time (const path &__p, file_time_type __new_time)
 
void std::experimental::filesystem::last_write_time (const path &__p, file_time_type __new_time, error_code &__ec) noexcept
 
pathstd::experimental::filesystem::v1::path::make_preferred ()
 
const string_typestd::experimental::filesystem::v1::path::native () const noexcept
 
 std::experimental::filesystem::v1::directory_entry::operator const filesystem::path & () const noexcept
 
 std::experimental::filesystem::v1::path::operator string_type () const
 
bool std::experimental::filesystem::v1::directory_entry::operator!= (const directory_entry &__rhs) const noexcept
 
bool std::experimental::filesystem::operator!= (const directory_iterator &__lhs, const directory_iterator &__rhs)
 
bool std::experimental::filesystem::operator!= (const recursive_directory_iterator &__lhs, const recursive_directory_iterator &__rhs)
 
constexpr copy_options std::experimental::filesystem::operator& (copy_options __x, copy_options __y) noexcept
 
constexpr directory_options std::experimental::filesystem::operator& (directory_options __x, directory_options __y) noexcept
 
constexpr perms std::experimental::filesystem::operator& (perms __x, perms __y) noexcept
 
copy_options & std::experimental::filesystem::operator&= (copy_options &__x, copy_options __y) noexcept
 
directory_options & std::experimental::filesystem::operator&= (directory_options &__x, directory_options __y) noexcept
 
perms & std::experimental::filesystem::operator&= (perms &__x, perms __y) noexcept
 
directory_entry std::experimental::filesystem::v1::__directory_iterator_proxy::operator* () &&noexcept
 
const directory_entry & std::experimental::filesystem::v1::directory_iterator::operator* () const
 
const directory_entry & std::experimental::filesystem::v1::recursive_directory_iterator::operator* () const
 
reference std::experimental::filesystem::v1::path::iterator::operator* () const
 
const directory_entry & std::experimental::filesystem::v1::__directory_iterator_proxy::operator* () const &noexcept
 
directory_iterator & std::experimental::filesystem::v1::directory_iterator::operator++ ()
 
recursive_directory_iterator & std::experimental::filesystem::v1::recursive_directory_iterator::operator++ ()
 
iteratorstd::experimental::filesystem::v1::path::iterator::operator++ ()
 
__directory_iterator_proxy std::experimental::filesystem::v1::directory_iterator::operator++ (int)
 
__directory_iterator_proxy std::experimental::filesystem::v1::recursive_directory_iterator::operator++ (int)
 
iterator std::experimental::filesystem::v1::path::iterator::operator++ (int)
 
template<typename _CharT >
__detail::_Path< _CharT *, _CharT * > & std::experimental::filesystem::v1::path::operator+= (_CharT __x)
 
template<typename _Source >
__detail::_Path< _Source > & std::experimental::filesystem::v1::path::operator+= (_Source const &__x)
 
pathstd::experimental::filesystem::v1::path::operator+= (basic_string_view< value_type > __x)
 
pathstd::experimental::filesystem::v1::path::operator+= (const path &__x)
 
pathstd::experimental::filesystem::v1::path::operator+= (const string_type &__x)
 
pathstd::experimental::filesystem::v1::path::operator+= (const value_type *__x)
 
pathstd::experimental::filesystem::v1::path::operator+= (value_type __x)
 
iteratorstd::experimental::filesystem::v1::path::iterator::operator-- ()
 
iterator std::experimental::filesystem::v1::path::iterator::operator-- (int)
 
const directory_entry * std::experimental::filesystem::v1::directory_iterator::operator-> () const
 
const directory_entry * std::experimental::filesystem::v1::recursive_directory_iterator::operator-> () const
 
pointer std::experimental::filesystem::v1::path::iterator::operator-> () const
 
template<typename _Source >
__detail::_Path< _Source > & std::experimental::filesystem::v1::path::operator/= (_Source const &__source)
 
pathstd::experimental::filesystem::v1::path::operator/= (const path &__p)
 
bool std::experimental::filesystem::v1::directory_entry::operator< (const directory_entry &__rhs) const noexcept
 
bool std::experimental::filesystem::v1::directory_entry::operator<= (const directory_entry &__rhs) const noexcept
 
template<typename _Source >
__detail::_Path< _Source > & std::experimental::filesystem::v1::path::operator= (_Source const &__source)
 
directory_entry & std::experimental::filesystem::v1::directory_entry::operator= (const directory_entry &)=default
 
directory_iterator & std::experimental::filesystem::v1::directory_iterator::operator= (const directory_iterator &__rhs)=default
 
file_status & std::experimental::filesystem::v1::file_status::operator= (const file_status &) noexcept=default
 
iteratorstd::experimental::filesystem::v1::path::iterator::operator= (const iterator &)=default
 
pathstd::experimental::filesystem::v1::path::operator= (const path &__p)=default
 
recursive_directory_iterator & std::experimental::filesystem::v1::recursive_directory_iterator::operator= (const recursive_directory_iterator &__rhs) noexcept
 
directory_entry & std::experimental::filesystem::v1::directory_entry::operator= (directory_entry &&) noexcept=default
 
directory_iterator & std::experimental::filesystem::v1::directory_iterator::operator= (directory_iterator &&__rhs) noexcept=default
 
file_status & std::experimental::filesystem::v1::file_status::operator= (file_status &&) noexcept=default
 
pathstd::experimental::filesystem::v1::path::operator= (path &&__p) noexcept
 
recursive_directory_iterator & std::experimental::filesystem::v1::recursive_directory_iterator::operator= (recursive_directory_iterator &&__rhs) noexcept
 
pathstd::experimental::filesystem::v1::path::operator= (string_type &&__source)
 
bool std::experimental::filesystem::v1::directory_entry::operator== (const directory_entry &__rhs) const noexcept
 
bool std::experimental::filesystem::operator== (const directory_iterator &__lhs, const directory_iterator &__rhs)
 
bool std::experimental::filesystem::operator== (const recursive_directory_iterator &__lhs, const recursive_directory_iterator &__rhs)
 
bool std::experimental::filesystem::v1::directory_entry::operator> (const directory_entry &__rhs) const noexcept
 
bool std::experimental::filesystem::v1::directory_entry::operator>= (const directory_entry &__rhs) const noexcept
 
constexpr copy_options std::experimental::filesystem::operator^ (copy_options __x, copy_options __y) noexcept
 
constexpr directory_options std::experimental::filesystem::operator^ (directory_options __x, directory_options __y) noexcept
 
constexpr perms std::experimental::filesystem::operator^ (perms __x, perms __y) noexcept
 
copy_options & std::experimental::filesystem::operator^= (copy_options &__x, copy_options __y) noexcept
 
directory_options & std::experimental::filesystem::operator^= (directory_options &__x, directory_options __y) noexcept
 
perms & std::experimental::filesystem::operator^= (perms &__x, perms __y) noexcept
 
constexpr copy_options std::experimental::filesystem::operator| (copy_options __x, copy_options __y) noexcept
 
constexpr directory_options std::experimental::filesystem::operator| (directory_options __x, directory_options __y) noexcept
 
constexpr perms std::experimental::filesystem::operator| (perms __x, perms __y) noexcept
 
copy_options & std::experimental::filesystem::operator|= (copy_options &__x, copy_options __y) noexcept
 
directory_options & std::experimental::filesystem::operator|= (directory_options &__x, directory_options __y) noexcept
 
perms & std::experimental::filesystem::operator|= (perms &__x, perms __y) noexcept
 
constexpr copy_options std::experimental::filesystem::operator~ (copy_options __x) noexcept
 
constexpr directory_options std::experimental::filesystem::operator~ (directory_options __x) noexcept
 
constexpr perms std::experimental::filesystem::operator~ (perms __x) noexcept
 
directory_options std::experimental::filesystem::v1::recursive_directory_iterator::options () const
 
path std::experimental::filesystem::v1::path::parent_path () const
 
const filesystem::pathstd::experimental::filesystem::v1::directory_entry::path () const noexcept
 
const pathstd::experimental::filesystem::v1::filesystem_error::path1 () const noexcept
 
const pathstd::experimental::filesystem::v1::filesystem_error::path2 () const noexcept
 
perms std::experimental::filesystem::v1::file_status::permissions () const noexcept
 
void std::experimental::filesystem::permissions (const path &__p, perms __prms)
 
void std::experimental::filesystem::permissions (const path &__p, perms __prms, error_code &__ec) noexcept
 
void std::experimental::filesystem::v1::file_status::permissions (perms __prms) noexcept
 
void std::experimental::filesystem::v1::recursive_directory_iterator::pop ()
 
void std::experimental::filesystem::v1::recursive_directory_iterator::pop (error_code &)
 
path std::experimental::filesystem::read_symlink (const path &__p)
 
path std::experimental::filesystem::read_symlink (const path &__p, error_code &__ec)
 
bool std::experimental::filesystem::v1::recursive_directory_iterator::recursion_pending () const
 
path std::experimental::filesystem::v1::path::relative_path () const
 
bool std::experimental::filesystem::remove (const path &__p)
 
bool std::experimental::filesystem::remove (const path &__p, error_code &__ec) noexcept
 
uintmax_t std::experimental::filesystem::remove_all (const path &__p)
 
uintmax_t std::experimental::filesystem::remove_all (const path &__p, error_code &__ec) noexcept
 
pathstd::experimental::filesystem::v1::path::remove_filename ()
 
void std::experimental::filesystem::rename (const path &__from, const path &__to)
 
void std::experimental::filesystem::rename (const path &__from, const path &__to, error_code &__ec) noexcept
 
pathstd::experimental::filesystem::v1::path::replace_extension (const path &__replacement=path())
 
void std::experimental::filesystem::v1::directory_entry::replace_filename (const filesystem::path &__p)
 
pathstd::experimental::filesystem::v1::path::replace_filename (const path &__replacement)
 
void std::experimental::filesystem::resize_file (const path &__p, uintmax_t __size)
 
void std::experimental::filesystem::resize_file (const path &__p, uintmax_t __size, error_code &__ec) noexcept
 
path std::experimental::filesystem::v1::path::root_directory () const
 
path std::experimental::filesystem::v1::path::root_name () const
 
path std::experimental::filesystem::v1::path::root_path () const
 
space_info std::experimental::filesystem::space (const path &__p)
 
space_info std::experimental::filesystem::space (const path &__p, error_code &__ec) noexcept
 
file_status std::experimental::filesystem::v1::directory_entry::status () const
 
file_status std::experimental::filesystem::status (const path &)
 
file_status std::experimental::filesystem::status (const path &, error_code &) noexcept
 
file_status std::experimental::filesystem::v1::directory_entry::status (error_code &__ec) const noexcept
 
bool std::experimental::filesystem::status_known (file_status) noexcept
 
path std::experimental::filesystem::v1::path::stem () const
 
std::string std::experimental::filesystem::v1::path::string () const
 
template<typename _CharT , typename _Traits = std::char_traits<_CharT>, typename _Allocator = std::allocator<_CharT>>
std::basic_string< _CharT, _Traits, _Allocator > std::experimental::filesystem::v1::path::string (const _Allocator &__a=_Allocator()) const
 
void std::experimental::filesystem::v1::path::swap (path &__rhs) noexcept
 
file_status std::experimental::filesystem::v1::directory_entry::symlink_status () const
 
file_status std::experimental::filesystem::symlink_status (const path &)
 
file_status std::experimental::filesystem::symlink_status (const path &, error_code &) noexcept
 
file_status std::experimental::filesystem::v1::directory_entry::symlink_status (error_code &__ec) const noexcept
 
path std::experimental::filesystem::system_complete (const path &__p)
 
path std::experimental::filesystem::system_complete (const path &__p, error_code &__ec)
 
path std::experimental::filesystem::temp_directory_path ()
 
path std::experimental::filesystem::temp_directory_path (error_code &__ec)
 
file_type std::experimental::filesystem::v1::file_status::type () const noexcept
 
void std::experimental::filesystem::v1::file_status::type (file_type __ft) noexcept
 
std::u16string std::experimental::filesystem::v1::path::u16string () const
 
std::u32string std::experimental::filesystem::v1::path::u32string () const
 
std::string std::experimental::filesystem::v1::path::u8string () const
 
const char * std::experimental::filesystem::v1::filesystem_error::what () const noexcept
 
std::wstring std::experimental::filesystem::v1::path::wstring () const
 

Variables

uintmax_t std::experimental::filesystem::v1::space_info::available
 
uintmax_t std::experimental::filesystem::v1::space_info::capacity
 
uintmax_t std::experimental::filesystem::v1::space_info::free
 
static constexpr value_type std::experimental::filesystem::v1::path::preferred_separator
 

Friends

class std::experimental::filesystem::v1::__directory_iterator_proxy::directory_iterator
 
bool std::experimental::filesystem::v1::path::iterator::operator!= (const iterator &__lhs, const iterator &__rhs)
 
bool std::experimental::filesystem::v1::directory_iterator::operator== (const directory_iterator &__lhs, const directory_iterator &__rhs)
 
bool std::experimental::filesystem::v1::path::iterator::operator== (const iterator &__lhs, const iterator &__rhs)
 
bool std::experimental::filesystem::v1::recursive_directory_iterator::operator== (const recursive_directory_iterator &__lhs, const recursive_directory_iterator &__rhs)
 
class std::experimental::filesystem::v1::path::iterator::path
 
class std::experimental::filesystem::v1::__directory_iterator_proxy::recursive_directory_iterator
 
class std::experimental::filesystem::v1::directory_iterator::recursive_directory_iterator
 

Detailed Description

Utilities for performing operations on file systems and their components, such as paths, regular files, and directories.

ISO/IEC TS 18822:2015 C++ File System Technical Specification

Typedef Documentation

◆ const_iterator

◆ difference_type [1/3]

typedef ptrdiff_t std::experimental::filesystem::v1::directory_iterator::difference_type

Definition at line 179 of file experimental/bits/fs_dir.h.

◆ difference_type [2/3]

typedef ptrdiff_t std::experimental::filesystem::v1::recursive_directory_iterator::difference_type

Definition at line 260 of file experimental/bits/fs_dir.h.

◆ difference_type [3/3]

using std::experimental::filesystem::v1::path::iterator::difference_type = std::ptrdiff_t

Definition at line 850 of file experimental/bits/fs_path.h.

◆ file_time_type

using std::experimental::filesystem::v1::file_time_type = typedef std::chrono::system_clock::time_point

Definition at line 257 of file experimental/bits/fs_fwd.h.

◆ iterator_category [1/3]

◆ iterator_category [2/3]

◆ iterator_category [3/3]

◆ pointer [1/3]

typedef const directory_entry* std::experimental::filesystem::v1::directory_iterator::pointer

Definition at line 180 of file experimental/bits/fs_dir.h.

◆ pointer [2/3]

typedef const directory_entry* std::experimental::filesystem::v1::recursive_directory_iterator::pointer

Definition at line 261 of file experimental/bits/fs_dir.h.

◆ pointer [3/3]

◆ reference [1/3]

typedef const directory_entry& std::experimental::filesystem::v1::directory_iterator::reference

Definition at line 181 of file experimental/bits/fs_dir.h.

◆ reference [2/3]

typedef const directory_entry& std::experimental::filesystem::v1::recursive_directory_iterator::reference

Definition at line 262 of file experimental/bits/fs_dir.h.

◆ reference [3/3]

◆ string_type

◆ value_type [1/4]

typedef directory_entry std::experimental::filesystem::v1::directory_iterator::value_type

Definition at line 178 of file experimental/bits/fs_dir.h.

◆ value_type [2/4]

typedef directory_entry std::experimental::filesystem::v1::recursive_directory_iterator::value_type

Definition at line 259 of file experimental/bits/fs_dir.h.

◆ value_type [3/4]

typedef char std::experimental::filesystem::v1::path::value_type

Definition at line 202 of file experimental/bits/fs_path.h.

◆ value_type [4/4]

Enumeration Type Documentation

◆ copy_options

enum class std::experimental::filesystem::v1::copy_options : unsigned short
strong

Bitmask type.

Definition at line 88 of file experimental/bits/fs_fwd.h.

◆ directory_options

enum class std::experimental::filesystem::v1::directory_options : unsigned char
strong

Definition at line 210 of file experimental/bits/fs_fwd.h.

◆ file_type

enum class std::experimental::filesystem::v1::file_type : signed char
strong

Definition at line 82 of file experimental/bits/fs_fwd.h.

◆ perms

enum class std::experimental::filesystem::v1::perms : unsigned
strong

Bitmask type.

Definition at line 141 of file experimental/bits/fs_fwd.h.

Function Documentation

◆ directory_entry()

std::experimental::filesystem::v1::directory_entry::directory_entry ( const filesystem::path __p)
inlineexplicit

Definition at line 94 of file experimental/bits/fs_dir.h.

◆ directory_iterator() [1/4]

std::experimental::filesystem::v1::directory_iterator::directory_iterator ( const path __p)
inlineexplicit

Definition at line 187 of file experimental/bits/fs_dir.h.

◆ directory_iterator() [2/4]

std::experimental::filesystem::v1::directory_iterator::directory_iterator ( const path __p,
directory_options  __options 
)
inline

Definition at line 190 of file experimental/bits/fs_dir.h.

◆ directory_iterator() [3/4]

std::experimental::filesystem::v1::directory_iterator::directory_iterator ( const path __p,
directory_options  __options,
error_code __ec 
)
inlinenoexcept

Definition at line 196 of file experimental/bits/fs_dir.h.

◆ directory_iterator() [4/4]

std::experimental::filesystem::v1::directory_iterator::directory_iterator ( const path __p,
error_code __ec 
)
inlinenoexcept

Definition at line 193 of file experimental/bits/fs_dir.h.

◆ file_status()

std::experimental::filesystem::v1::file_status::file_status ( file_type  __ft = file_type::none,
perms  __prms = perms::unknown 
)
inlineexplicitnoexcept

Definition at line 61 of file experimental/bits/fs_dir.h.

◆ filesystem_error() [1/3]

std::experimental::filesystem::v1::filesystem_error::filesystem_error ( const string __what_arg,
const path __p1,
const path __p2,
error_code  __ec 
)
inline

Definition at line 706 of file experimental/bits/fs_path.h.

◆ filesystem_error() [2/3]

std::experimental::filesystem::v1::filesystem_error::filesystem_error ( const string __what_arg,
const path __p1,
error_code  __ec 
)
inline

Definition at line 702 of file experimental/bits/fs_path.h.

◆ filesystem_error() [3/3]

std::experimental::filesystem::v1::filesystem_error::filesystem_error ( const string __what_arg,
error_code  __ec 
)
inline

Definition at line 699 of file experimental/bits/fs_path.h.

◆ iterator()

std::experimental::filesystem::v1::path::iterator::iterator ( )
inline

Definition at line 856 of file experimental/bits/fs_path.h.

◆ path() [1/8]

std::experimental::filesystem::v1::path::path ( )
inlinenoexcept

Definition at line 209 of file experimental/bits/fs_path.h.

◆ path() [2/8]

template<typename _InputIterator , typename _Require = __detail::_Path<_InputIterator, _InputIterator>>
std::experimental::filesystem::v1::path::path ( _InputIterator  __first,
_InputIterator  __last 
)
inline

Definition at line 234 of file experimental/bits/fs_path.h.

◆ path() [3/8]

template<typename _InputIterator , typename _Require = __detail::_Path<_InputIterator, _InputIterator>, typename _Require2 = __detail::__value_type_is_char<_InputIterator>>
std::experimental::filesystem::v1::path::path ( _InputIterator  __first,
_InputIterator  __last,
const locale __loc 
)
inline

Definition at line 249 of file experimental/bits/fs_path.h.

◆ path() [4/8]

template<typename _Source , typename _Require = __detail::_Path<_Source>>
std::experimental::filesystem::v1::path::path ( _Source const &  __source)
inline

Definition at line 227 of file experimental/bits/fs_path.h.

◆ path() [5/8]

template<typename _Source , typename _Require = __detail::_Path<_Source>, typename _Require2 = __detail::__value_type_is_char<_Source>>
std::experimental::filesystem::v1::path::path ( _Source const &  __source,
const locale __loc 
)
inline

Definition at line 241 of file experimental/bits/fs_path.h.

◆ path() [6/8]

std::experimental::filesystem::v1::path::path ( path &&  __p)
inlinenoexcept

Definition at line 213 of file experimental/bits/fs_path.h.

◆ path() [7/8]

std::experimental::filesystem::v1::path::path ( string_type &&  __source)
inline

Definition at line 221 of file experimental/bits/fs_path.h.

◆ recursive_directory_iterator() [1/4]

std::experimental::filesystem::v1::recursive_directory_iterator::recursive_directory_iterator ( const path __p)
inlineexplicit

Definition at line 268 of file experimental/bits/fs_dir.h.

◆ recursive_directory_iterator() [2/4]

std::experimental::filesystem::v1::recursive_directory_iterator::recursive_directory_iterator ( const path __p,
directory_options  __options 
)
inline

Definition at line 271 of file experimental/bits/fs_dir.h.

◆ recursive_directory_iterator() [3/4]

std::experimental::filesystem::v1::recursive_directory_iterator::recursive_directory_iterator ( const path __p,
directory_options  __options,
error_code __ec 
)
inlinenoexcept

Definition at line 274 of file experimental/bits/fs_dir.h.

◆ recursive_directory_iterator() [4/4]

std::experimental::filesystem::v1::recursive_directory_iterator::recursive_directory_iterator ( const path __p,
error_code __ec 
)
inlinenoexcept

Definition at line 279 of file experimental/bits/fs_dir.h.

◆ append() [1/2]

template<typename _InputIterator >
__detail::_Path< _InputIterator, _InputIterator > & std::experimental::filesystem::v1::path::append ( _InputIterator  __first,
_InputIterator  __last 
)
inline

Definition at line 296 of file experimental/bits/fs_path.h.

◆ append() [2/2]

template<typename _Source >
__detail::_Path< _Source > & std::experimental::filesystem::v1::path::append ( _Source const &  __source)
inline

Definition at line 288 of file experimental/bits/fs_path.h.

◆ assign() [1/4]

template<typename _InputIterator >
__detail::_Path< _InputIterator, _InputIterator > & std::experimental::filesystem::v1::path::assign ( _InputIterator  __first,
_InputIterator  __last 
)
inline

Definition at line 274 of file experimental/bits/fs_path.h.

◆ assign() [2/4]

template<typename _Source >
__detail::_Path< _Source > & std::experimental::filesystem::v1::path::assign ( _Source const &  __source)
inline

Definition at line 269 of file experimental/bits/fs_path.h.

◆ assign() [3/4]

void std::experimental::filesystem::v1::directory_entry::assign ( const filesystem::path __p)
inline

Definition at line 101 of file experimental/bits/fs_dir.h.

◆ assign() [4/4]

path & std::experimental::filesystem::v1::path::assign ( string_type &&  __source)
inline

Definition at line 910 of file experimental/bits/fs_path.h.

◆ begin() [1/3]

path::iterator std::experimental::filesystem::v1::path::begin ( ) const
inline

Definition at line 1198 of file experimental/bits/fs_path.h.

◆ begin() [2/3]

directory_iterator std::experimental::filesystem::v1::begin ( directory_iterator  __iter)
inlinenoexcept

Definition at line 238 of file experimental/bits/fs_dir.h.

◆ begin() [3/3]

recursive_directory_iterator std::experimental::filesystem::v1::begin ( recursive_directory_iterator  __iter)
inlinenoexcept

Definition at line 332 of file experimental/bits/fs_dir.h.

◆ c_str()

const value_type * std::experimental::filesystem::v1::path::c_str ( ) const
inlinenoexcept

Definition at line 344 of file experimental/bits/fs_path.h.

◆ clear()

void std::experimental::filesystem::v1::path::clear ( )
inlinenoexcept

Definition at line 332 of file experimental/bits/fs_path.h.

◆ compare() [1/3]

int std::experimental::filesystem::v1::path::compare ( const basic_string_view< value_type >  __s) const
inline

Definition at line 1148 of file experimental/bits/fs_path.h.

◆ compare() [2/3]

int std::experimental::filesystem::v1::path::compare ( const string_type __s) const
inline

Definition at line 1141 of file experimental/bits/fs_path.h.

◆ compare() [3/3]

int std::experimental::filesystem::v1::path::compare ( const value_type *  __s) const
inline

Definition at line 1144 of file experimental/bits/fs_path.h.

◆ concat() [1/2]

template<typename _InputIterator >
__detail::_Path< _InputIterator, _InputIterator > & std::experimental::filesystem::v1::path::concat ( _InputIterator  __first,
_InputIterator  __last 
)
inline

Definition at line 327 of file experimental/bits/fs_path.h.

◆ concat() [2/2]

template<typename _Source >
__detail::_Path< _Source > & std::experimental::filesystem::v1::path::concat ( _Source const &  __x)
inline

Definition at line 319 of file experimental/bits/fs_path.h.

◆ copy() [1/2]

void std::experimental::filesystem::v1::copy ( const path __from,
const path __to 
)
inline

Definition at line 61 of file experimental/bits/fs_ops.h.

◆ copy() [2/2]

void std::experimental::filesystem::v1::copy ( const path __from,
const path __to,
error_code __ec 
)
inlinenoexcept

Definition at line 65 of file experimental/bits/fs_ops.h.

◆ copy_file() [1/2]

bool std::experimental::filesystem::v1::copy_file ( const path __from,
const path __to 
)
inline

Definition at line 73 of file experimental/bits/fs_ops.h.

◆ copy_file() [2/2]

bool std::experimental::filesystem::v1::copy_file ( const path __from,
const path __to,
error_code __ec 
)
inlinenoexcept

Definition at line 77 of file experimental/bits/fs_ops.h.

◆ disable_recursion_pending()

void std::experimental::filesystem::v1::recursive_directory_iterator::disable_recursion_pending ( )
inline

Definition at line 316 of file experimental/bits/fs_dir.h.

◆ empty()

bool std::experimental::filesystem::v1::path::empty ( ) const
inlinenoexcept

Definition at line 406 of file experimental/bits/fs_path.h.

◆ end() [1/3]

path::iterator std::experimental::filesystem::v1::path::end ( ) const
inline

Definition at line 1206 of file experimental/bits/fs_path.h.

◆ end() [2/3]

directory_iterator std::experimental::filesystem::v1::end ( directory_iterator  )
inlinenoexcept

Definition at line 242 of file experimental/bits/fs_dir.h.

◆ end() [3/3]

recursive_directory_iterator std::experimental::filesystem::v1::end ( recursive_directory_iterator  )
inlinenoexcept

Definition at line 336 of file experimental/bits/fs_dir.h.

◆ exists() [1/3]

bool std::experimental::filesystem::v1::exists ( const path __p)
inline

Definition at line 126 of file experimental/bits/fs_ops.h.

◆ exists() [2/3]

bool std::experimental::filesystem::v1::exists ( const path __p,
error_code __ec 
)
inlinenoexcept

Definition at line 130 of file experimental/bits/fs_ops.h.

◆ exists() [3/3]

bool std::experimental::filesystem::v1::exists ( file_status  __s)
inlinenoexcept

Definition at line 122 of file experimental/bits/fs_ops.h.

◆ extension()

path std::experimental::filesystem::v1::path::extension ( ) const
inline

Definition at line 1165 of file experimental/bits/fs_path.h.

◆ filename()

path std::experimental::filesystem::v1::path::filename ( ) const
inline

Definition at line 1153 of file experimental/bits/fs_path.h.

◆ generic_string() [1/2]

std::string std::experimental::filesystem::v1::path::generic_string ( ) const
inline

Definition at line 1119 of file experimental/bits/fs_path.h.

◆ generic_string() [2/2]

template<typename _CharT , typename _Traits , typename _Allocator >
std::basic_string< _CharT, _Traits, _Allocator > std::experimental::filesystem::v1::path::generic_string ( const _Allocator &  __a = _Allocator()) const
inline

Definition at line 1091 of file experimental/bits/fs_path.h.

◆ generic_u16string()

std::u16string std::experimental::filesystem::v1::path::generic_u16string ( ) const
inline

Definition at line 1135 of file experimental/bits/fs_path.h.

◆ generic_u32string()

std::u32string std::experimental::filesystem::v1::path::generic_u32string ( ) const
inline

Definition at line 1138 of file experimental/bits/fs_path.h.

◆ generic_u8string()

std::string std::experimental::filesystem::v1::path::generic_u8string ( ) const
inline

Definition at line 1131 of file experimental/bits/fs_path.h.

◆ generic_wstring()

std::wstring std::experimental::filesystem::v1::path::generic_wstring ( ) const
inline

Definition at line 1123 of file experimental/bits/fs_path.h.

◆ has_extension()

bool std::experimental::filesystem::v1::path::has_extension ( ) const
inline

Definition at line 1181 of file experimental/bits/fs_path.h.

◆ has_stem()

bool std::experimental::filesystem::v1::path::has_stem ( ) const
inline

Definition at line 1174 of file experimental/bits/fs_path.h.

◆ is_absolute()

bool std::experimental::filesystem::v1::path::is_absolute ( ) const
inline

Definition at line 1188 of file experimental/bits/fs_path.h.

◆ is_block_file() [1/3]

bool std::experimental::filesystem::v1::is_block_file ( const path __p)
inline

Definition at line 152 of file experimental/bits/fs_ops.h.

◆ is_block_file() [2/3]

bool std::experimental::filesystem::v1::is_block_file ( const path __p,
error_code __ec 
)
inlinenoexcept

Definition at line 156 of file experimental/bits/fs_ops.h.

◆ is_block_file() [3/3]

bool std::experimental::filesystem::v1::is_block_file ( file_status  __s)
inlinenoexcept

Definition at line 148 of file experimental/bits/fs_ops.h.

◆ is_character_file() [1/3]

bool std::experimental::filesystem::v1::is_character_file ( const path __p)
inline

Definition at line 164 of file experimental/bits/fs_ops.h.

◆ is_character_file() [2/3]

bool std::experimental::filesystem::v1::is_character_file ( const path __p,
error_code __ec 
)
inlinenoexcept

Definition at line 168 of file experimental/bits/fs_ops.h.

◆ is_character_file() [3/3]

bool std::experimental::filesystem::v1::is_character_file ( file_status  __s)
inlinenoexcept

Definition at line 160 of file experimental/bits/fs_ops.h.

◆ is_directory() [1/3]

bool std::experimental::filesystem::v1::is_directory ( const path __p)
inline

Definition at line 176 of file experimental/bits/fs_ops.h.

◆ is_directory() [2/3]

bool std::experimental::filesystem::v1::is_directory ( const path __p,
error_code __ec 
)
inlinenoexcept

Definition at line 180 of file experimental/bits/fs_ops.h.

◆ is_directory() [3/3]

bool std::experimental::filesystem::v1::is_directory ( file_status  __s)
inlinenoexcept

Definition at line 172 of file experimental/bits/fs_ops.h.

◆ is_fifo() [1/3]

bool std::experimental::filesystem::v1::is_fifo ( const path __p)
inline

Definition at line 191 of file experimental/bits/fs_ops.h.

◆ is_fifo() [2/3]

bool std::experimental::filesystem::v1::is_fifo ( const path __p,
error_code __ec 
)
inlinenoexcept

Definition at line 195 of file experimental/bits/fs_ops.h.

◆ is_fifo() [3/3]

bool std::experimental::filesystem::v1::is_fifo ( file_status  __s)
inlinenoexcept

Definition at line 187 of file experimental/bits/fs_ops.h.

◆ is_other() [1/3]

bool std::experimental::filesystem::v1::is_other ( const path __p)
inline

Definition at line 206 of file experimental/bits/fs_ops.h.

◆ is_other() [2/3]

bool std::experimental::filesystem::v1::is_other ( const path __p,
error_code __ec 
)
inlinenoexcept

Definition at line 210 of file experimental/bits/fs_ops.h.

◆ is_other() [3/3]

bool std::experimental::filesystem::v1::is_other ( file_status  __s)
inlinenoexcept

Definition at line 199 of file experimental/bits/fs_ops.h.

◆ is_regular_file() [1/3]

bool std::experimental::filesystem::v1::is_regular_file ( const path __p)
inline

Definition at line 218 of file experimental/bits/fs_ops.h.

◆ is_regular_file() [2/3]

bool std::experimental::filesystem::v1::is_regular_file ( const path __p,
error_code __ec 
)
inlinenoexcept

Definition at line 222 of file experimental/bits/fs_ops.h.

◆ is_regular_file() [3/3]

bool std::experimental::filesystem::v1::is_regular_file ( file_status  __s)
inlinenoexcept

Definition at line 214 of file experimental/bits/fs_ops.h.

◆ is_relative()

bool std::experimental::filesystem::v1::path::is_relative ( ) const
inline

Definition at line 416 of file experimental/bits/fs_path.h.

◆ is_socket() [1/3]

bool std::experimental::filesystem::v1::is_socket ( const path __p)
inline

Definition at line 230 of file experimental/bits/fs_ops.h.

◆ is_socket() [2/3]

bool std::experimental::filesystem::v1::is_socket ( const path __p,
error_code __ec 
)
inlinenoexcept

Definition at line 234 of file experimental/bits/fs_ops.h.

◆ is_socket() [3/3]

bool std::experimental::filesystem::v1::is_socket ( file_status  __s)
inlinenoexcept

Definition at line 226 of file experimental/bits/fs_ops.h.

◆ is_symlink() [1/3]

bool std::experimental::filesystem::v1::is_symlink ( const path __p)
inline

Definition at line 242 of file experimental/bits/fs_ops.h.

◆ is_symlink() [2/3]

bool std::experimental::filesystem::v1::is_symlink ( const path __p,
error_code __ec 
)
inlinenoexcept

Definition at line 246 of file experimental/bits/fs_ops.h.

◆ is_symlink() [3/3]

bool std::experimental::filesystem::v1::is_symlink ( file_status  __s)
inlinenoexcept

Definition at line 238 of file experimental/bits/fs_ops.h.

◆ make_preferred()

path & std::experimental::filesystem::v1::path::make_preferred ( )
inline

Definition at line 962 of file experimental/bits/fs_path.h.

◆ native()

const string_type & std::experimental::filesystem::v1::path::native ( ) const
inlinenoexcept

Definition at line 343 of file experimental/bits/fs_path.h.

◆ operator const filesystem::path &()

std::experimental::filesystem::v1::directory_entry::operator const filesystem::path & ( ) const
inlinenoexcept

Definition at line 109 of file experimental/bits/fs_dir.h.

◆ operator string_type()

std::experimental::filesystem::v1::path::operator string_type ( ) const
inline

Definition at line 345 of file experimental/bits/fs_path.h.

◆ operator!=() [1/3]

bool std::experimental::filesystem::v1::directory_entry::operator!= ( const directory_entry &  __rhs) const
inlinenoexcept

Definition at line 136 of file experimental/bits/fs_dir.h.

◆ operator!=() [2/3]

bool std::experimental::filesystem::v1::operator!= ( const directory_iterator &  __lhs,
const directory_iterator &  __rhs 
)
inline

Definition at line 253 of file experimental/bits/fs_dir.h.

◆ operator!=() [3/3]

bool std::experimental::filesystem::v1::operator!= ( const recursive_directory_iterator &  __lhs,
const recursive_directory_iterator &  __rhs 
)
inline

Definition at line 348 of file experimental/bits/fs_dir.h.

◆ operator&() [1/3]

constexpr copy_options std::experimental::filesystem::v1::operator& ( copy_options  __x,
copy_options  __y 
)
constexprnoexcept

Definition at line 97 of file experimental/bits/fs_fwd.h.

◆ operator&() [2/3]

constexpr directory_options std::experimental::filesystem::v1::operator& ( directory_options  __x,
directory_options  __y 
)
constexprnoexcept

Definition at line 215 of file experimental/bits/fs_fwd.h.

◆ operator&() [3/3]

constexpr perms std::experimental::filesystem::v1::operator& ( perms  __x,
perms  __y 
)
constexprnoexcept

Definition at line 167 of file experimental/bits/fs_fwd.h.

◆ operator&=() [1/3]

copy_options & std::experimental::filesystem::v1::operator&= ( copy_options &  __x,
copy_options  __y 
)
inlinenoexcept

Definition at line 128 of file experimental/bits/fs_fwd.h.

◆ operator&=() [2/3]

directory_options & std::experimental::filesystem::v1::operator&= ( directory_options &  __x,
directory_options  __y 
)
inlinenoexcept

Definition at line 246 of file experimental/bits/fs_fwd.h.

◆ operator&=() [3/3]

perms & std::experimental::filesystem::v1::operator&= ( perms &  __x,
perms  __y 
)
inlinenoexcept

Definition at line 198 of file experimental/bits/fs_fwd.h.

◆ operator*() [1/3]

directory_entry std::experimental::filesystem::v1::__directory_iterator_proxy::operator* ( ) &&
inlinenoexcept

Definition at line 163 of file experimental/bits/fs_dir.h.

◆ operator*() [2/3]

path::iterator::reference std::experimental::filesystem::v1::path::iterator::operator* ( ) const
inline

Definition at line 1248 of file experimental/bits/fs_path.h.

◆ operator*() [3/3]

const directory_entry & std::experimental::filesystem::v1::__directory_iterator_proxy::operator* ( ) const &
inlinenoexcept

Definition at line 161 of file experimental/bits/fs_dir.h.

◆ operator++() [1/4]

path::iterator & std::experimental::filesystem::v1::path::iterator::operator++ ( )
inline

Definition at line 1214 of file experimental/bits/fs_path.h.

◆ operator++() [2/4]

__directory_iterator_proxy std::experimental::filesystem::v1::directory_iterator::operator++ ( int  )
inline

Definition at line 218 of file experimental/bits/fs_dir.h.

◆ operator++() [3/4]

__directory_iterator_proxy std::experimental::filesystem::v1::recursive_directory_iterator::operator++ ( int  )
inline

Definition at line 306 of file experimental/bits/fs_dir.h.

◆ operator++() [4/4]

iterator std::experimental::filesystem::v1::path::iterator::operator++ ( int  )
inline

Definition at line 865 of file experimental/bits/fs_path.h.

◆ operator+=() [1/7]

template<typename _CharT >
__detail::_Path< _CharT *, _CharT * > & std::experimental::filesystem::v1::path::operator+= ( _CharT  __x)
inline

Definition at line 955 of file experimental/bits/fs_path.h.

◆ operator+=() [2/7]

template<typename _Source >
__detail::_Path< _Source > & std::experimental::filesystem::v1::path::operator+= ( _Source const &  __x)
inline

Definition at line 311 of file experimental/bits/fs_path.h.

◆ operator+=() [3/7]

path & std::experimental::filesystem::v1::path::operator+= ( basic_string_view< value_type >  __x)
inline

Definition at line 945 of file experimental/bits/fs_path.h.

◆ operator+=() [4/7]

path & std::experimental::filesystem::v1::path::operator+= ( const path __x)
inline

Definition at line 914 of file experimental/bits/fs_path.h.

◆ operator+=() [5/7]

path & std::experimental::filesystem::v1::path::operator+= ( const string_type __x)
inline

Definition at line 920 of file experimental/bits/fs_path.h.

◆ operator+=() [6/7]

path & std::experimental::filesystem::v1::path::operator+= ( const value_type *  __x)
inline

Definition at line 928 of file experimental/bits/fs_path.h.

◆ operator+=() [7/7]

path & std::experimental::filesystem::v1::path::operator+= ( value_type  __x)
inline

Definition at line 936 of file experimental/bits/fs_path.h.

◆ operator--() [1/2]

path::iterator & std::experimental::filesystem::v1::path::iterator::operator-- ( )
inline

Definition at line 1231 of file experimental/bits/fs_path.h.

◆ operator--() [2/2]

iterator std::experimental::filesystem::v1::path::iterator::operator-- ( int  )
inline

Definition at line 868 of file experimental/bits/fs_path.h.

◆ operator->() [1/3]

const directory_entry * std::experimental::filesystem::v1::directory_iterator::operator-> ( ) const
inline

Definition at line 214 of file experimental/bits/fs_dir.h.

◆ operator->() [2/3]

const directory_entry * std::experimental::filesystem::v1::recursive_directory_iterator::operator-> ( ) const
inline

Definition at line 295 of file experimental/bits/fs_dir.h.

◆ operator->() [3/3]

pointer std::experimental::filesystem::v1::path::iterator::operator-> ( ) const
inline

Definition at line 862 of file experimental/bits/fs_path.h.

◆ operator/=() [1/2]

template<typename _Source >
__detail::_Path< _Source > & std::experimental::filesystem::v1::path::operator/= ( _Source const &  __source)
inline

Definition at line 283 of file experimental/bits/fs_path.h.

◆ operator/=() [2/2]

path & std::experimental::filesystem::v1::path::operator/= ( const path __p)
inline

Definition at line 279 of file experimental/bits/fs_path.h.

◆ operator<()

bool std::experimental::filesystem::v1::directory_entry::operator< ( const directory_entry &  __rhs) const
inlinenoexcept

Definition at line 127 of file experimental/bits/fs_dir.h.

◆ operator<=()

bool std::experimental::filesystem::v1::directory_entry::operator<= ( const directory_entry &  __rhs) const
inlinenoexcept

Definition at line 139 of file experimental/bits/fs_dir.h.

◆ operator=() [1/3]

template<typename _Source >
__detail::_Path< _Source > & std::experimental::filesystem::v1::path::operator= ( _Source const &  __source)
inline

Definition at line 264 of file experimental/bits/fs_path.h.

◆ operator=() [2/3]

path & std::experimental::filesystem::v1::path::operator= ( path &&  __p)
inlinenoexcept

Definition at line 896 of file experimental/bits/fs_path.h.

◆ operator=() [3/3]

path & std::experimental::filesystem::v1::path::operator= ( string_type &&  __source)
inline

Definition at line 906 of file experimental/bits/fs_path.h.

◆ operator==() [1/3]

bool std::experimental::filesystem::v1::directory_entry::operator== ( const directory_entry &  __rhs) const
inlinenoexcept

Definition at line 132 of file experimental/bits/fs_dir.h.

◆ operator==() [2/3]

bool std::experimental::filesystem::v1::operator== ( const directory_iterator &  __lhs,
const directory_iterator &  __rhs 
)
inline

Definition at line 246 of file experimental/bits/fs_dir.h.

◆ operator==() [3/3]

bool std::experimental::filesystem::v1::operator== ( const recursive_directory_iterator &  __lhs,
const recursive_directory_iterator &  __rhs 
)
inline

Definition at line 340 of file experimental/bits/fs_dir.h.

◆ operator>()

bool std::experimental::filesystem::v1::directory_entry::operator> ( const directory_entry &  __rhs) const
inlinenoexcept

Definition at line 144 of file experimental/bits/fs_dir.h.

◆ operator>=()

bool std::experimental::filesystem::v1::directory_entry::operator>= ( const directory_entry &  __rhs) const
inlinenoexcept

Definition at line 148 of file experimental/bits/fs_dir.h.

◆ operator^() [1/3]

constexpr copy_options std::experimental::filesystem::v1::operator^ ( copy_options  __x,
copy_options  __y 
)
constexprnoexcept

Definition at line 113 of file experimental/bits/fs_fwd.h.

◆ operator^() [2/3]

constexpr directory_options std::experimental::filesystem::v1::operator^ ( directory_options  __x,
directory_options  __y 
)
constexprnoexcept

Definition at line 231 of file experimental/bits/fs_fwd.h.

◆ operator^() [3/3]

constexpr perms std::experimental::filesystem::v1::operator^ ( perms  __x,
perms  __y 
)
constexprnoexcept

Definition at line 183 of file experimental/bits/fs_fwd.h.

◆ operator^=() [1/3]

copy_options & std::experimental::filesystem::v1::operator^= ( copy_options &  __x,
copy_options  __y 
)
inlinenoexcept

Definition at line 136 of file experimental/bits/fs_fwd.h.

◆ operator^=() [2/3]

directory_options & std::experimental::filesystem::v1::operator^= ( directory_options &  __x,
directory_options  __y 
)
inlinenoexcept

Definition at line 254 of file experimental/bits/fs_fwd.h.

◆ operator^=() [3/3]

perms & std::experimental::filesystem::v1::operator^= ( perms &  __x,
perms  __y 
)
inlinenoexcept

Definition at line 206 of file experimental/bits/fs_fwd.h.

◆ operator|() [1/3]

constexpr copy_options std::experimental::filesystem::v1::operator| ( copy_options  __x,
copy_options  __y 
)
constexprnoexcept

Definition at line 105 of file experimental/bits/fs_fwd.h.

◆ operator|() [2/3]

constexpr directory_options std::experimental::filesystem::v1::operator| ( directory_options  __x,
directory_options  __y 
)
constexprnoexcept

Definition at line 223 of file experimental/bits/fs_fwd.h.

◆ operator|() [3/3]

constexpr perms std::experimental::filesystem::v1::operator| ( perms  __x,
perms  __y 
)
constexprnoexcept

Definition at line 175 of file experimental/bits/fs_fwd.h.

◆ operator|=() [1/3]

copy_options & std::experimental::filesystem::v1::operator|= ( copy_options &  __x,
copy_options  __y 
)
inlinenoexcept

Definition at line 132 of file experimental/bits/fs_fwd.h.

◆ operator|=() [2/3]

directory_options & std::experimental::filesystem::v1::operator|= ( directory_options &  __x,
directory_options  __y 
)
inlinenoexcept

Definition at line 250 of file experimental/bits/fs_fwd.h.

◆ operator|=() [3/3]

perms & std::experimental::filesystem::v1::operator|= ( perms &  __x,
perms  __y 
)
inlinenoexcept

Definition at line 202 of file experimental/bits/fs_fwd.h.

◆ operator~() [1/3]

constexpr copy_options std::experimental::filesystem::v1::operator~ ( copy_options  __x)
constexprnoexcept

Definition at line 121 of file experimental/bits/fs_fwd.h.

◆ operator~() [2/3]

constexpr directory_options std::experimental::filesystem::v1::operator~ ( directory_options  __x)
constexprnoexcept

Definition at line 239 of file experimental/bits/fs_fwd.h.

◆ operator~() [3/3]

constexpr perms std::experimental::filesystem::v1::operator~ ( perms  __x)
constexprnoexcept

Definition at line 191 of file experimental/bits/fs_fwd.h.

◆ options()

directory_options std::experimental::filesystem::v1::recursive_directory_iterator::options ( ) const
inline

Definition at line 290 of file experimental/bits/fs_dir.h.

◆ path() [8/8]

const filesystem::path & std::experimental::filesystem::v1::directory_entry::path ( ) const
inlinenoexcept

Definition at line 108 of file experimental/bits/fs_dir.h.

◆ path1()

const path & std::experimental::filesystem::v1::filesystem_error::path1 ( ) const
inlinenoexcept

Definition at line 713 of file experimental/bits/fs_path.h.

◆ path2()

const path & std::experimental::filesystem::v1::filesystem_error::path2 ( ) const
inlinenoexcept

Definition at line 714 of file experimental/bits/fs_path.h.

◆ permissions() [1/2]

perms std::experimental::filesystem::v1::file_status::permissions ( ) const
inlinenoexcept

Definition at line 74 of file experimental/bits/fs_dir.h.

◆ permissions() [2/2]

void std::experimental::filesystem::v1::file_status::permissions ( perms  __prms)
inlinenoexcept

Definition at line 78 of file experimental/bits/fs_dir.h.

◆ recursion_pending()

bool std::experimental::filesystem::v1::recursive_directory_iterator::recursion_pending ( ) const
inline

Definition at line 292 of file experimental/bits/fs_dir.h.

◆ replace_filename()

void std::experimental::filesystem::v1::directory_entry::replace_filename ( const filesystem::path __p)
inline

Definition at line 104 of file experimental/bits/fs_dir.h.

◆ status() [1/2]

file_status std::experimental::filesystem::v1::directory_entry::status ( ) const
inline

Definition at line 112 of file experimental/bits/fs_dir.h.

◆ status() [2/2]

file_status std::experimental::filesystem::v1::directory_entry::status ( error_code __ec) const
inlinenoexcept

Definition at line 116 of file experimental/bits/fs_dir.h.

◆ status_known()

bool std::experimental::filesystem::v1::status_known ( file_status  __s)
inlinenoexcept

Definition at line 279 of file experimental/bits/fs_ops.h.

◆ stem()

path std::experimental::filesystem::v1::path::stem ( ) const
inline

Definition at line 1156 of file experimental/bits/fs_path.h.

◆ string() [1/2]

std::string std::experimental::filesystem::v1::path::string ( ) const
inline

Definition at line 1052 of file experimental/bits/fs_path.h.

◆ string() [2/2]

template<typename _CharT , typename _Traits , typename _Allocator >
std::basic_string< _CharT, _Traits, _Allocator > std::experimental::filesystem::v1::path::string ( const _Allocator &  __a = _Allocator()) const
inline

Definition at line 980 of file experimental/bits/fs_path.h.

◆ swap()

void std::experimental::filesystem::v1::path::swap ( path __rhs)
inlinenoexcept

Definition at line 971 of file experimental/bits/fs_path.h.

◆ symlink_status() [1/2]

file_status std::experimental::filesystem::v1::directory_entry::symlink_status ( ) const
inline

Definition at line 120 of file experimental/bits/fs_dir.h.

◆ symlink_status() [2/2]

file_status std::experimental::filesystem::v1::directory_entry::symlink_status ( error_code __ec) const
inlinenoexcept

Definition at line 124 of file experimental/bits/fs_dir.h.

◆ type() [1/2]

file_type std::experimental::filesystem::v1::file_status::type ( ) const
inlinenoexcept

Definition at line 73 of file experimental/bits/fs_dir.h.

◆ type() [2/2]

void std::experimental::filesystem::v1::file_status::type ( file_type  __ft)
inlinenoexcept

Definition at line 77 of file experimental/bits/fs_dir.h.

◆ u16string()

std::u16string std::experimental::filesystem::v1::path::u16string ( ) const
inline

Definition at line 1084 of file experimental/bits/fs_path.h.

◆ u32string()

std::u32string std::experimental::filesystem::v1::path::u32string ( ) const
inline

Definition at line 1087 of file experimental/bits/fs_path.h.

◆ u8string()

std::string std::experimental::filesystem::v1::path::u8string ( ) const
inline

Definition at line 1064 of file experimental/bits/fs_path.h.

◆ what()

const char * std::experimental::filesystem::v1::filesystem_error::what ( ) const
inlinevirtualnoexcept

Returns a C-style character string describing the general cause of the current error (the same string passed to the ctor).

Reimplemented from std::runtime_error.

Definition at line 715 of file experimental/bits/fs_path.h.

References std::basic_string< _CharT, _Traits, _Alloc >::c_str().

◆ wstring()

std::wstring std::experimental::filesystem::v1::path::wstring ( ) const
inline

Definition at line 1056 of file experimental/bits/fs_path.h.

Variable Documentation

◆ available

uintmax_t std::experimental::filesystem::v1::space_info::available

Definition at line 79 of file experimental/bits/fs_fwd.h.

◆ capacity

uintmax_t std::experimental::filesystem::v1::space_info::capacity

Definition at line 77 of file experimental/bits/fs_fwd.h.

◆ free

uintmax_t std::experimental::filesystem::v1::space_info::free

Definition at line 78 of file experimental/bits/fs_fwd.h.

◆ preferred_separator

constexpr value_type std::experimental::filesystem::v1::path::preferred_separator
staticconstexpr

Definition at line 203 of file experimental/bits/fs_path.h.

Friends

◆ directory_iterator

friend class directory_iterator
friend

Definition at line 166 of file experimental/bits/fs_dir.h.

◆ operator!=

bool operator!= ( const iterator __lhs,
const iterator __rhs 
)
friend

Definition at line 873 of file experimental/bits/fs_path.h.

◆ operator== [1/3]

bool operator== ( const directory_iterator &  __lhs,
const directory_iterator &  __rhs 
)
friend

Definition at line 246 of file experimental/bits/fs_dir.h.

◆ operator== [2/3]

bool operator== ( const iterator __lhs,
const iterator __rhs 
)
friend

Definition at line 870 of file experimental/bits/fs_path.h.

◆ operator== [3/3]

bool operator== ( const recursive_directory_iterator &  __lhs,
const recursive_directory_iterator &  __rhs 
)
friend

Definition at line 340 of file experimental/bits/fs_dir.h.

◆ path

friend class path
friend

Definition at line 877 of file experimental/bits/fs_path.h.

◆ recursive_directory_iterator [1/2]

friend class recursive_directory_iterator
friend

Definition at line 167 of file experimental/bits/fs_dir.h.

◆ recursive_directory_iterator [2/2]

friend class recursive_directory_iterator
friend

Definition at line 232 of file experimental/bits/fs_dir.h.