Namespaces
Variants
Views
Actions

Filesystem library

From cppreference.com
 
 
Experimental
Technical Specification
Filesystem library (filesystem TS)
Library fundamentals (library fundamentals TS)
Library fundamentals 2 (library fundamentals TS v2)
Library fundamentals 3 (library fundamentals TS v3)
Extensions for parallelism (parallelism TS)
Extensions for parallelism 2 (parallelism TS v2)
Extensions for concurrency (concurrency TS)
Extensions for concurrency 2 (concurrency TS v2)
Concepts (concepts TS)
Ranges (ranges TS)
Reflection (reflection TS)
Mathematical special functions (special functions TR)
Experimental Non-TS
Pattern Matching
Linear Algebra
std::execution
Contracts
2D Graphics
 
 

The Filesystem library, ISO/IEC TS 18822:2015, provides facilities for performing operations on file systems and their components, such as paths, regular files, and directories.

This library is an optional technical specification and may be unavailable if a hierarchical file system is not accessible to the implementation, or if it does not provide the necessary capabilities. Some features may not be available if they are not supported by the underlying file system (e.g. FAT filesystem has no hardlinks, softlinks, and other features).

The behavior is undefined if the calls to functions in this library introduce a file system race, that is, when multiple threads, processes, or computers interleave access and modification to the same object in a file system.

This library is directly based on boost.filesystem, which is currently available on more compilers and platforms than this experimental technical specification.

Contents

[edit] Library-wide definitions

  • file: a file system object that holds data, can be written to, read from, or both. Files have names, attributes, one of which is file type:
  • directory: a file that acts as a container of directory entries, which identify other files (some of which may be other, nested, directories). When discussing a particular file, the directory in which it appears as an entry is its parent directory. The parent directory can be represented by the relative pathname "..".
  • hard link: a directory entry that associates a name with an existing file. If multiple hard links are supported, the file is removed after the last hard link to it is removed.
  • symbolic link: a directory entry that associates a name with a path, which may or may not exist.
  • regular file: a file that is not one of the other file types.
  • file name: a string of characters that names a file. Permissible characters, case sensitivity, maximum length, and the disallowed names are implementation-defined. Names . (dot) and .. (dot-dot) have special meaning at library level.
  • path: sequence of elements that identifies a file. It begins with an optional root-name (e.g. "C:" or "//server"), followed by optional root-directory (e.g. "/" on Unix), followed by a sequence of zero or more file names (all but last of which have to be directories or links to directories). The native format (e.g. which characters are used as separators) and character encoding of the string representation of a path (the pathname) is implementation-defined, this library provides portable representation of paths.
  • absolute path: a path that unambiguously identifies the location of a file.
  • canonical path: an absolute path that includes no symlinks, "." or ".." elements.
  • relative path: a path that identifies a file relative to some location on the file system. The special path names . (dot, "current directory") and .. (dot-dot, "parent directory") are relative paths.

[edit] Classes

represents a path
(class) [edit]
an exception thrown on file system errors
(class) [edit]
a directory entry
(class) [edit]
an iterator to the contents of the directory
(class) [edit]
an iterator to the contents of a directory and its subdirectories
(class) [edit]
represents file type and permissions
(class) [edit]
information about free and available space on the filesystem
(class) [edit]
the type of a file
(enum) [edit]
identifies file system permissions
(enum) [edit]
specifies semantics of copy operations
(enum) [edit]
options for iterating directory contents
(enum) [edit]
represents file time values
(typedef) [edit]

[edit] Non-member functions

composes an absolute path
converts a path to an absolute path replicating OS-specific behavior
(function) [edit]
composes a canonical path
(function) [edit]
copies files or directories
(function) [edit]
copies file contents
(function) [edit]
copies a symbolic link
(function) [edit]
creates new directory
(function) [edit]
creates a hard link
(function) [edit]
creates a symbolic link
(function) [edit]
return current working directory
(function) [edit]
checks whether path refers to existing file system object
(function) [edit]
checks whether two paths refer to the same file system object
(function) [edit]
returns the size of a file
(function) [edit]
returns the number of hard links referring to the specific file
(function) [edit]
gets or sets the time of the last data modification
(function) [edit]
modifies file access permissions
(function) [edit]
obtains the target of a symbolic link
(function) [edit]
removes a file or empty directory
removes a file or directory and all its contents, recursively
(function) [edit]
moves or renames a file or directory
(function) [edit]
changes the size of a regular file by truncation or zero-fill
(function) [edit]
determines available free space on the file system
(function) [edit]
determines file attributes
determines file attributes, checking the symlink target
(function) [edit]
returns a directory suitable for temporary files
(function) [edit]
File types
checks whether the given path refers to block device
(function) [edit]
checks whether the given path refers to a character device
(function) [edit]
checks whether the given path refers to a directory
(function) [edit]
checks whether the given path refers to an empty file or directory
(function) [edit]
checks whether the given path refers to a named pipe
(function) [edit]
checks whether the argument refers to an other file
(function) [edit]
checks whether the argument refers to a regular file
(function) [edit]
checks whether the argument refers to a named IPC socket
(function) [edit]
checks whether the argument refers to a symbolic link
(function) [edit]
checks whether file status is known
(function) [edit]

[edit] See also

C++ documentation for Filesystem library (C++17)