Answers for "how to create a directory in windows in 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

Code answers related to "how to create a directory in windows in c++"

Browse Popular Code Answers by Language