Updated Comments and fixed bug within the Unix File Implementation

This commit is contained in:
Jan Kevin Dick
2019-11-26 14:10:32 +01:00
parent 3424ee7bc8
commit 9daaec4ec0
5 changed files with 11 additions and 11 deletions

View File

@@ -194,18 +194,18 @@ public:
/// The target path can be a directory.
///
/// A directory is copied recursively.
/// If failOnOverwrite is set the Method throws an FileExists Exception
/// If options is set to OPT_FAIL_ON_OVERWRITE the Method throws an FileExists Exception
/// if the File already exists.
void moveTo(const std::string& path, int options = 0);
/// Copies the file (or directory) to the given path and
/// removes the original file. The target path can be a directory.
/// If failOnOverwrite is set the Method throws an FileExists Exception
/// If options is set to OPT_FAIL_ON_OVERWRITE the Method throws an FileExists Exception
/// if the File already exists.
void renameTo(const std::string& path, int options = 0);
/// Renames the file to the new name.
/// If failOnOverwrite is set the Method throws an FileExists Exception
/// If options is set to OPT_FAIL_ON_OVERWRITE the Method throws an FileExists Exception
/// if the File already exists.
void linkTo(const std::string& path, LinkType type = LINK_SYMBOLIC) const;