summaryrefslogtreecommitdiff
path: root/shared/file_handling.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/file_handling.h')
-rw-r--r--shared/file_handling.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/shared/file_handling.h b/shared/file_handling.h
index 113168f3..bdd73bea 100644
--- a/shared/file_handling.h
+++ b/shared/file_handling.h
@@ -66,6 +66,7 @@ void createDirectory(const Zstring& directory); //throw (FileError); -> function
void copyFile(const Zstring& sourceFile, //throw (FileError: ErrorTargetPathMissing, ErrorFileLocked (Windows-only));
const Zstring& targetFile,
bool copyFilePermissions,
+ bool transactionalCopy,
CallbackCopyFile* callback); //may be NULL
//Note: it MAY happen that copyFile() leaves temp files behind, e.g. temporary network drop.
// => clean them up at an appropriate time (automatically set sync directions to delete them). They have the following ending:
bgstack15