Creating and Deleting Directories in C++
1. Description If the compiler supports C++17, it is recommended to use the <span>std::filesystem</span> related functions If used only on Windows platform, you can use <span>_mkdir</span> and <span>_rmdir</span> If used only on Linux platform, you can use <span>mkdir</span> and <span>rmdir</span> If the code needs to be cross-platform, you can use system calls to unify If … Read more