aboutsummaryrefslogtreecommitdiff
path: root/CPP/Windows/FileName.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--CPP/Windows/FileName.h38
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
54bool IsSuperPath(const wchar_t *s) throw(); 54bool IsSuperPath(const wchar_t *s) throw();
55bool IsSuperOrDevicePath(const wchar_t *s) throw(); 55bool IsSuperOrDevicePath(const wchar_t *s) throw();
56 56
57bool IsAltStreamPrefixWithColon(const UString &s) throw();
58// returns true, if super prefix was removed
59bool If_IsSuperPath_RemoveSuperPrefix(UString &s);
60
57#ifndef USE_UNICODE_FSTRING 61#ifndef USE_UNICODE_FSTRING
58bool IsDrivePath2(CFSTR s) throw(); // first 2 chars are drive chars like "a:" 62bool 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();
82bool IsAbsolutePath(const wchar_t *s) throw(); 86bool IsAbsolutePath(const wchar_t *s) throw();
83unsigned GetRootPrefixSize(const wchar_t *s) throw(); 87unsigned GetRootPrefixSize(const wchar_t *s) throw();
84 88
85#ifdef WIN_LONG_PATH 89#ifdef Z7_LONG_PATH
86 90
87const int kSuperPathType_UseOnlyMain = 0; 91const int kSuperPathType_UseOnlyMain = 0;
88const int kSuperPathType_UseOnlySuper = 1; 92const int kSuperPathType_UseOnlySuper = 1;
@@ -92,16 +96,16 @@ int GetUseSuperPathType(CFSTR s) throw();
92bool GetSuperPath(CFSTR path, UString &superPath, bool onlyIfNew); 96bool GetSuperPath(CFSTR path, UString &superPath, bool onlyIfNew);
93bool GetSuperPaths(CFSTR s1, CFSTR s2, UString &d1, UString &d2, bool onlyIfNew); 97bool 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*/
114bool GetFullPath(CFSTR dirPrefix, CFSTR path, FString &fullPath); 128bool GetFullPath(CFSTR dirPrefix, CFSTR path, FString &fullPath);
115bool GetFullPath(CFSTR path, FString &fullPath); 129bool GetFullPath(CFSTR path, FString &fullPath);
116 130