Search⌘ K
AI Features

Introduction

Explore the enhancements in C++17 focusing on the std::filesystem library. This lesson introduces you to the ability to manage files and directories directly within C++, covering basic types, path handling, error management, directory iteration, and file creation. Gain the foundational skills to work with modern filesystem features in C++.

We'll cover the following...

Filesystem

Since early versions, in the Standard Library, there was an option to work with files. Through streams - like fstream you can open files, read data, ...