mirror of https://github.com/kiwix/libkiwix.git
+ bool makeDirectory(const string &path);
This commit is contained in:
parent
cfa00c33f2
commit
f2280a6b02
|
@ -93,3 +93,8 @@ bool fileExists(const string &path) {
|
|||
fin.close();
|
||||
return flag;
|
||||
}
|
||||
|
||||
bool makeDirectory(const string &path) {
|
||||
int status = mkdir(path.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
|
||||
return status == 0;
|
||||
}
|
||||
|
|
|
@ -38,5 +38,6 @@ string removeLastPathElement(const string path, const bool removePreSeparator =
|
|||
unsigned int getFileSize(const string &path);
|
||||
string getFileSizeAsString(const string &path);
|
||||
bool fileExists(const string &path);
|
||||
bool makeDirectory(const string &path);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue