summaryrefslogtreecommitdiff
path: root/zen/file_id.h
blob: 3fd4c6bb8091f59dfa8e338d0bd637081f20091f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// **************************************************************************
// * 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-2011 ZenJu (zhnmju123 AT gmx.de)                    *
// **************************************************************************

#ifndef FILEID_H_INCLUDED
#define FILEID_H_INCLUDED

#include "file_id_def.h"
#include "zstring.h"
#include <string>

//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
bgstack15