Implement mkpath

This commit is contained in:
2023-10-08 20:27:51 +02:00
parent bb0bd8f6a0
commit d2047e43e0
2 changed files with 30 additions and 0 deletions

View File

@@ -118,4 +118,6 @@ static inline std::string methodName(const std::string& prettyFunction)
return prettyFunction.substr(begin,end) + "()";
}
bool mkpath(std::string path, int mode = 0777);
#endif