Filesystem library

This newly added feature lets us interact with the directories and files on our system.

We'll cover the following...

The new filesystem library is based on boost::filesystem. Some of its components are optional. This means not all functionality of std::filesystem is available on each implementation of the filesystem library. For example, FAT-32 does not support symbolic links.

ℹ️ Using cppreference.com
At the time of the writing this book (October 2017), I had no C+±compiler at my disposal that supports the new filesystem library; therefore, I executed the programs in this chapter with the newest GCC-compiler on ...