From C++17, there is a std::filesystem library that provides facilities for performing operations on file systems and their components, such as paths, regular files, and directories.
We can use this library for example in the FileUtil module. It will be necessary to investigate this more properly. Don't forget about heap allocations without allocators. All such allocations must be documented.
From C++17, there is a
std::filesystem
library that provides facilities for performing operations on file systems and their components, such as paths, regular files, and directories.We can use this library for example in the
FileUtil
module. It will be necessary to investigate this more properly. Don't forget about heap allocations without allocators. All such allocations must be documented.