// mkdir.h #ifndef dataset_util__mkdir_H #define dataset_util__mkdir_H // Create a directory using the POSIX mkdir function. // Sets all permission bits (umask will mask these). // Returns posix error code. #include // Create directory. int mkdir(std::string dir); // Create directory and, if needed, each directorries in which // the specified directory resides. int mkfulldir(std::string dir); #endif