Overview
This section deals with the filesystem library in C++17. We'll be looking at the new features of the filesystem one by one.
We'll cover the following...
Filesystem Overview
While the Standard Library lacked some important features, you could always use Boost with its dozens of sub-libraries and do the work. The C++ Committee decided that the Boost libraries are so important that some of the systems were merged into the Standard. For example, smart pointers (although improved with the move semantics ...