Add comment for exchanging the system call

This commit is contained in:
2020-06-02 11:37:43 +02:00
parent 042726002c
commit 0c5337db6b
+1
View File
@@ -45,6 +45,7 @@ void WriterUtils::create_destination_folder(const string& output_file)
string output_folder(output_file.substr(0, file_separator_index));
// TODO: filesystem::create_directories(output_folder)
string create_folder_command("mkdir -p " + output_folder);
system(create_folder_command.c_str());
}