diff options
Diffstat (limited to '')
-rw-r--r-- | CPP/Windows/FileName.h | 38 |
1 files changed, 26 insertions, 12 deletions
diff --git a/CPP/Windows/FileName.h b/CPP/Windows/FileName.h index de8bd13..219b656 100644 --- a/CPP/Windows/FileName.h +++ b/CPP/Windows/FileName.h | |||
@@ -1,7 +1,7 @@ | |||
1 | // Windows/FileName.h | 1 | // Windows/FileName.h |
2 | 2 | ||
3 | #ifndef __WINDOWS_FILE_NAME_H | 3 | #ifndef ZIP7_INC_WINDOWS_FILE_NAME_H |
4 | #define __WINDOWS_FILE_NAME_H | 4 | #define ZIP7_INC_WINDOWS_FILE_NAME_H |
5 | 5 | ||
6 | #include "../Common/MyString.h" | 6 | #include "../Common/MyString.h" |
7 | 7 | ||
@@ -54,6 +54,10 @@ bool IsDrivePath2(const wchar_t *s) throw(); // first 2 chars are drive chars li | |||
54 | bool IsSuperPath(const wchar_t *s) throw(); | 54 | bool IsSuperPath(const wchar_t *s) throw(); |
55 | bool IsSuperOrDevicePath(const wchar_t *s) throw(); | 55 | bool IsSuperOrDevicePath(const wchar_t *s) throw(); |
56 | 56 | ||
57 | bool IsAltStreamPrefixWithColon(const UString &s) throw(); | ||
58 | // returns true, if super prefix was removed | ||
59 | bool If_IsSuperPath_RemoveSuperPrefix(UString &s); | ||
60 | |||
57 | #ifndef USE_UNICODE_FSTRING | 61 | #ifndef USE_UNICODE_FSTRING |
58 | bool IsDrivePath2(CFSTR s) throw(); // first 2 chars are drive chars like "a:" | 62 | bool IsDrivePath2(CFSTR s) throw(); // first 2 chars are drive chars like "a:" |
59 | // bool IsDriveName2(CFSTR s) throw(); // is drive name like "a:" | 63 | // bool IsDriveName2(CFSTR s) throw(); // is drive name like "a:" |
@@ -82,7 +86,7 @@ int FindAltStreamColon(CFSTR path) throw(); | |||
82 | bool IsAbsolutePath(const wchar_t *s) throw(); | 86 | bool IsAbsolutePath(const wchar_t *s) throw(); |
83 | unsigned GetRootPrefixSize(const wchar_t *s) throw(); | 87 | unsigned GetRootPrefixSize(const wchar_t *s) throw(); |
84 | 88 | ||
85 | #ifdef WIN_LONG_PATH | 89 | #ifdef Z7_LONG_PATH |
86 | 90 | ||
87 | const int kSuperPathType_UseOnlyMain = 0; | 91 | const int kSuperPathType_UseOnlyMain = 0; |
88 | const int kSuperPathType_UseOnlySuper = 1; | 92 | const int kSuperPathType_UseOnlySuper = 1; |
@@ -92,16 +96,16 @@ int GetUseSuperPathType(CFSTR s) throw(); | |||
92 | bool GetSuperPath(CFSTR path, UString &superPath, bool onlyIfNew); | 96 | bool GetSuperPath(CFSTR path, UString &superPath, bool onlyIfNew); |
93 | bool GetSuperPaths(CFSTR s1, CFSTR s2, UString &d1, UString &d2, bool onlyIfNew); | 97 | bool GetSuperPaths(CFSTR s1, CFSTR s2, UString &d1, UString &d2, bool onlyIfNew); |
94 | 98 | ||
95 | #define USE_MAIN_PATH (__useSuperPathType != kSuperPathType_UseOnlySuper) | 99 | #define USE_MAIN_PATH (_useSuperPathType != kSuperPathType_UseOnlySuper) |
96 | #define USE_MAIN_PATH_2 (__useSuperPathType1 != kSuperPathType_UseOnlySuper && __useSuperPathType2 != kSuperPathType_UseOnlySuper) | 100 | #define USE_MAIN_PATH_2 (_useSuperPathType1 != kSuperPathType_UseOnlySuper && _useSuperPathType2 != kSuperPathType_UseOnlySuper) |
97 | 101 | ||
98 | #define USE_SUPER_PATH (__useSuperPathType != kSuperPathType_UseOnlyMain) | 102 | #define USE_SUPER_PATH (_useSuperPathType != kSuperPathType_UseOnlyMain) |
99 | #define USE_SUPER_PATH_2 (__useSuperPathType1 != kSuperPathType_UseOnlyMain || __useSuperPathType2 != kSuperPathType_UseOnlyMain) | 103 | #define USE_SUPER_PATH_2 (_useSuperPathType1 != kSuperPathType_UseOnlyMain || _useSuperPathType2 != kSuperPathType_UseOnlyMain) |
100 | 104 | ||
101 | #define IF_USE_MAIN_PATH int __useSuperPathType = GetUseSuperPathType(path); if (USE_MAIN_PATH) | 105 | #define IF_USE_MAIN_PATH int _useSuperPathType = GetUseSuperPathType(path); if (USE_MAIN_PATH) |
102 | #define IF_USE_MAIN_PATH_2(x1, x2) \ | 106 | #define IF_USE_MAIN_PATH_2(x1, x2) \ |
103 | int __useSuperPathType1 = GetUseSuperPathType(x1); \ | 107 | int _useSuperPathType1 = GetUseSuperPathType(x1); \ |
104 | int __useSuperPathType2 = GetUseSuperPathType(x2); \ | 108 | int _useSuperPathType2 = GetUseSuperPathType(x2); \ |
105 | if (USE_MAIN_PATH_2) | 109 | if (USE_MAIN_PATH_2) |
106 | 110 | ||
107 | #else | 111 | #else |
@@ -109,8 +113,18 @@ bool GetSuperPaths(CFSTR s1, CFSTR s2, UString &d1, UString &d2, bool onlyIfNew) | |||
109 | #define IF_USE_MAIN_PATH | 113 | #define IF_USE_MAIN_PATH |
110 | #define IF_USE_MAIN_PATH_2(x1, x2) | 114 | #define IF_USE_MAIN_PATH_2(x1, x2) |
111 | 115 | ||
112 | #endif // WIN_LONG_PATH | 116 | #endif // Z7_LONG_PATH |
113 | 117 | ||
118 | /* | ||
119 | if (dirPrefix != NULL && (path) is relative) | ||
120 | { | ||
121 | (dirPrefix) will be used | ||
122 | result (fullPath) will contain prefix part of (dirPrefix). | ||
123 | } | ||
124 | Current_Dir path can be used in 2 cases: | ||
125 | 1) if (path) is relative && dirPrefix == NULL | ||
126 | 2) for _WIN32: if (path) is absolute starting wuth "\" | ||
127 | */ | ||
114 | bool GetFullPath(CFSTR dirPrefix, CFSTR path, FString &fullPath); | 128 | bool GetFullPath(CFSTR dirPrefix, CFSTR path, FString &fullPath); |
115 | bool GetFullPath(CFSTR path, FString &fullPath); | 129 | bool GetFullPath(CFSTR path, FString &fullPath); |
116 | 130 | ||