blob: ccc8f42e4679722aeb2cbbcd8a632989aeeab220 (
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
29
30
31
32
33
34
35
36
|
// **************************************************************************
// * 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 RESOLVE_PATH_H_INCLUDED
#define RESOLVE_PATH_H_INCLUDED
#include <vector>
#include <zen/zstring.h>
namespace zen
{
/*
FULL directory format:
- expand macros
- expand volume path by name
- convert relative paths into absolute
- trim whitespace and append file name separator
*/
Zstring getFormattedDirectoryName(const Zstring& dirString); //throw() - non-blocking! no I/O!
//macro substitution only
Zstring expandMacros(const Zstring& text);
#ifdef FFS_WIN
//*blocks* if network is not reachable or when showing login prompt dialog!
void loginNetworkShare(const Zstring& dirname, bool allowUserInteraction); //throw() - user interaction: show OS password prompt
std::vector<Zstring> getDirectoryAliases(const Zstring& dirString);
#endif
}
#endif // RESOLVE_PATH_H_INCLUDED
|