summaryrefslogtreecommitdiff
path: root/shared/fileHandling.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:06 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:06 +0200
commitfbe76102e941b9f1edaf236788e42678f05fdf9a (patch)
treef5f538316019fa89be8dc478103490c3a826f3ac /shared/fileHandling.h
parent3.8 (diff)
downloadFreeFileSync-fbe76102e941b9f1edaf236788e42678f05fdf9a.tar.gz
FreeFileSync-fbe76102e941b9f1edaf236788e42678f05fdf9a.tar.bz2
FreeFileSync-fbe76102e941b9f1edaf236788e42678f05fdf9a.zip
3.9
Diffstat (limited to 'shared/fileHandling.h')
-rw-r--r--shared/fileHandling.h101
1 files changed, 0 insertions, 101 deletions
diff --git a/shared/fileHandling.h b/shared/fileHandling.h
deleted file mode 100644
index 6c57e8e4..00000000
--- a/shared/fileHandling.h
+++ /dev/null
@@ -1,101 +0,0 @@
-// **************************************************************************
-// * This file is part of the FreeFileSync project. It is distributed under *
-// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
-// * Copyright (C) 2008-2010 ZenJu (zhnmju123 AT gmx.de) *
-// **************************************************************************
-//
-#ifndef FILE_HANDLING_H_INCLUDED
-#define FILE_HANDLING_H_INCLUDED
-
-#include "zstring.h"
-#include "fileError.h"
-#include <wx/longlong.h>
-
-#ifdef FFS_WIN
-#include "shadow.h"
-#endif
-
-
-namespace FreeFileSync
-{
-Zstring getFormattedDirectoryName(const Zstring& dirname);
-
-bool fileExists( const Zstring& filename); //throw() replaces wxFileExists()!
-bool dirExists( const Zstring& dirname); //throw() replaces wxDirExists(): optional 'cause wxDirExists treats symlinks correctly
-bool symlinkExists( const Zstring& objname); //throw() check whether a symbolic link exists
-bool somethingExists(const Zstring& objname); //throw() check whether any object with this name exists
-
-//check whether two folders are located on the same (logical) volume
-//left and right directories NEED NOT yet exist! volume prefix is sufficient! path may end with PATH_SEPARATOR
-enum ResponseSameVol
-{
- VOLUME_SAME,
- VOLUME_DIFFERENT,
- VOLUME_CANT_SAY
-};
-ResponseSameVol onSameVolume(const Zstring& folderLeft, const Zstring& folderRight); //throw()
-
-//optionally: copy file or directory create/last change date, DOES NOTHING if something fails
-//does NOT dereference symlinks!
-bool copyFileTimes(const Zstring& sourceDir, const Zstring& targetDir, bool deRefSymlinks); //throw(); returns true on success
-
-//symlink handling: always evaluate target
-wxULongLong getFilesize(const Zstring& filename); //throw (FileError)
-
-
-//file handling
-void removeFile(const Zstring& filename); //throw (FileError)
-void removeDirectory(const Zstring& directory); //throw (FileError)
-
-
-struct MoveFileCallback //callback functionality
-{
- virtual ~MoveFileCallback() {}
-
- enum Response
- {
- CONTINUE,
- CANCEL
- };
- virtual Response requestUiRefresh() = 0; //DON'T throw exceptions here, at least in Windows build!
-};
-
-//rename file or directory: no copying!!!
-void renameFile(const Zstring& oldName, const Zstring& newName); //throw (FileError);
-
-//move source to target; expectations: target not existing, all super-directories of target exist
-void moveFile(const Zstring& sourceFile, const Zstring& targetFile, MoveFileCallback* callback = NULL); //throw (FileError);
-
-//move source to target including subdirectories
-//"ignoreExistingDirs": existing directories will be enhanced as long as this is possible without overwriting files
-void moveDirectory(const Zstring& sourceDir, const Zstring& targetDir, bool ignoreExistingDirs, MoveFileCallback* callback = NULL); //throw (FileError);
-
-//creates superdirectories automatically:
-void createDirectory(const Zstring& directory, const Zstring& templateDir = Zstring(), bool copyDirectorySymLinks = false); //throw (FileError);
-
-struct CopyFileCallback //callback functionality
-{
- virtual ~CopyFileCallback() {}
-
- enum Response
- {
- CONTINUE,
- CANCEL
- };
- virtual Response updateCopyStatus(const wxULongLong& totalBytesTransferred) = 0; //DON'T throw exceptions here, at least in Windows build!
-};
-
-void copyFile(const Zstring& sourceFile,
- const Zstring& targetFile,
- bool copyFileSymLinks,
-#ifdef FFS_WIN
- ShadowCopy* shadowCopyHandler = NULL, //supply handler for making shadow copies
-#endif
- CopyFileCallback* callback = NULL); //throw (FileError);
-//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:
-const Zstring TEMP_FILE_ENDING = DefaultStr(".ffs_tmp");
-}
-
-
-#endif //FILE_HANDLING_H_INCLUDED
bgstack15