summaryrefslogtreecommitdiff
path: root/zen/file_access.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/file_access.h')
-rw-r--r--zen/file_access.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/zen/file_access.h b/zen/file_access.h
index f6a02edc..639abf64 100644
--- a/zen/file_access.h
+++ b/zen/file_access.h
@@ -72,8 +72,7 @@ void copyItemPermissions(const Zstring& sourcePath, const Zstring& targetPath, P
void createDirectory(const Zstring& dirPath); //throw FileError, ErrorTargetExisting
//creates directories recursively if not existing
-//returns false if folder already exists
-bool createDirectoryIfMissingRecursion(const Zstring& dirPath); //throw FileError
+void createDirectoryIfMissingRecursion(const Zstring& dirPath); //throw FileError
//symlink handling: follow
//expects existing source/target directories
bgstack15