// ************************************************************************** // * 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) Zenju (zenju AT gmx DOT de) - All Rights Reserved * // ************************************************************************** #ifndef FILEID_H_INCLUDED #define FILEID_H_INCLUDED #include "file_id_def.h" #include "zstring.h" #include //unique file identifier namespace zen { //get unique file id (symbolic link handling: opens the link!!!) //returns initial FileId() on error! FileId getFileID(const Zstring& filename); //test whether two distinct paths point to the same file or directory: // true: paths point to same files/dirs // false: error occurred OR point to different files/dirs bool samePhysicalFile(const Zstring& file1, const Zstring& file2); } #endif // FILEID_H_INCLUDED