使用soui开发的mbc,只支持windows版本
w1146869587
2022-01-24 4905e2e7537d507f218e8e9595485e09d9f3a2b4
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
////////////////////////////////////////////////////////////////////////////////
// This source file is part of the ZipArchive library source distribution and
// is Copyrighted 2000 - 2011 by Artpol Software - Tadeusz Dracz
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
// 
// For the licensing details refer to the License.txt file.
//
// Web Site: http://www.artpol-software.com
////////////////////////////////////////////////////////////////////////////////
 
#include "stdafx.h"
 
#ifdef _ZIP_SYSTEM_WIN
 
#include "ZipPathComponent.h"
 
const CZipString CZipPathComponent::PathPrefix =  _T("\\\\?\\unc\\");
 
CZipPathComponent::~CZipPathComponent()
{
 
}
 
int CZipPathComponent::IsPrefixed(const CZipString& path)
{
    int i = -1, iLen = PathPrefix.GetLength();
    int pathLen = path.GetLength();
    if (iLen > pathLen)
        iLen = pathLen;
    CZipString szPossiblePrefix = path.Left(iLen);
    szPossiblePrefix.MakeLower(); // must perform case insensitive comparison
    while (++i < iLen && szPossiblePrefix[i] == PathPrefix[i]);
    return i;
}
 
#if defined _UNICODE && _MSC_VER >= 1400
 
CZipString CZipPathComponent::AddPrefix(LPCTSTR path, bool isFolder)
{    
 
    CZipString ret = path;
    AddPrefix(ret, isFolder);
    return ret;
}
 
void CZipPathComponent::AddPrefix(CZipString& path, bool isFolder)
{    
 
    if (path.GetLength() >= (isFolder ? 248 : MAX_PATH))
    {
        int prefixLength = IsPrefixed(path);
        if (prefixLength < ptUnicode)
        {            
            if (prefixLength == ptUnc)
            {
                path = path.Mid(prefixLength);
                // long UNC
                path.Insert(0, PathPrefix.Left(CZipPathComponent::ptUncWin));
            }
            else
            {
                path.Insert(0, PathPrefix.Left(CZipPathComponent::ptUnicode));
            }
        }
    }
}
 
 
#else
 
CZipString CZipPathComponent::AddPrefix(LPCTSTR path, bool)
{    
    return path;
}
 
void CZipPathComponent::AddPrefix(CZipString&, bool)
{    
 
}
 
#endif
 
void CZipPathComponent::SetFullPath(LPCTSTR lpszFullPath)
{
    TCHAR szDrive[_MAX_DRIVE];
#if defined _UNICODE && _MSC_VER >= 1400
    TCHAR szDir[32767];
#else
    TCHAR szDir[_MAX_DIR];
#endif
    TCHAR szFname[_MAX_FNAME];
    TCHAR szExt[_MAX_EXT];
    
    
    CZipString szTempPath(lpszFullPath);
    int i = IsPrefixed(szTempPath);    
    if (i == ptUnc || i == ptUnicode || i == ptUncWin) // unc path, Unicode path or unc path meeting windows file name conventions
    {
        m_szPrefix = szTempPath.Left(i);
        szTempPath = szTempPath.Mid(i);        
    }
    else
        m_szPrefix.Empty();
#if _MSC_VER >= 1400    
    _tsplitpath_s(szTempPath, szDrive , szDir, szFname, szExt);
#else
    _tsplitpath(szTempPath, szDrive , szDir, szFname, szExt);
#endif
    
    m_szDrive = szDrive;
    m_szDirectory = szDir;
    
    m_szDirectory.TrimLeft(m_cSeparator);
    m_szDirectory.TrimRight(m_cSeparator);
    SetExtension(szExt);
    m_szFileTitle = szFname;
}
 
 
CZipString CZipPathComponent::GetNoDrive() const
{
    CZipString szPath = m_szDirectory;
    CZipString szFileName = GetFileName();
    if (!szFileName.IsEmpty() && !szPath.IsEmpty())
        szPath += m_cSeparator;
 
    szPath += szFileName;
    return szPath;    
}
 
#endif // _ZIP_SYSTEM_WIN