Summary
Understand the core components of the C++17 filesystem library such as the path class, directory_entry, and iterators. Learn through practical examples how to manipulate files and directories, filter with regex, and create temporary directory structures.
We'll cover the following...
We'll cover the following...
In this chapter, we dove into one of the biggest addition of C++17: std::filesystem. You saw the core elements of the library: the path class, directory_entry and iterators and lots of supporting free functions.
Throughout the chapter, we also explored lots of examples: from simple ...