15. Filesystem library
The new filesystem library is based on boost::filesystem. Some of its components are optional. This means not all functionality of std::filesytem is available on each implementation of the filesystem library. For example, FAT-32 does not support symbolic links.
The library is based on the three concepts: file, file name and path.
- A file is an object that holds data such...