1 #ifndef BLACKCAT_FILESYSTEMS_H_ 2 #define BLACKCAT_FILESYSTEMS_H_ 11 namespace filesystem {
13 #if defined _WIN32 || defined __CYGWIN__ 14 #define BC_FILE_SEPERATOR '\\' 16 #define BC_FILE_SEPERATOR '/' 24 stat(name.c_str(), &info);
25 return info.st_mode & S_IFDIR;
27 return system((
"test -d " + name).c_str()) == 0;
31 inline int mkdir(
const std::string& name) {
32 return system((
"mkdir " + name).c_str());
37 return stat(name.c_str(), &buffer) == 0;
44 template<
class... Strs>
51 return str + right_path;
52 else if (lsep && rsep)
53 return str.substr(0, str.size()-2) + right_path;
bool endswith(const bc::string &str) const
Definition: string.h:43
int mkdir(const std::string &name)
Definition: filesystem.h:31
bc::string make_path(const bc::string &path)
Definition: filesystem.h:40
bool directory_exists(const std::string &name)
Definition: filesystem.h:21
#define BC_FILE_SEPERATOR
Definition: filesystem.h:16
bool file_exists(const std::string &name)
Definition: filesystem.h:35
Inherits from std::string.
Definition: string.h:21
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
bool startswith(const std::string &str) const
Definition: string.h:38