Use STL Filesystem library to create output directories
Description
DORiE utilizes a call to mkdir
in the header <sys/stat.h>
. C++17 introduced the Filesystem library to STL.
Proposal
Use std::filesystem
calls to create the output directory.
How to test the implementation?
Everything still works.
Related issues
None so far.