Answers for "mkdir() c++"

C++
0

mkdir c++

#include <boost/filesystem.hpp>

namespace fs = boost::filesystem;
fs::create_directory( fs::current_path() + mysubdirectoryname );
Posted by: Guest on February-13-2020

Browse Popular Code Answers by Language