@@ -42,9 +42,9 @@ namespace
42
42
{
43
43
// These variables are not exposed as any path name handling probably
44
44
// should be a function in here rather than be manipulating strings directly / inline.
45
- constexpr wchar_t thisOsPathSeparator = L' \\ ' ;
46
- constexpr wchar_t otherOsPathSeparator = L' /' ;
47
- constexpr wchar_t DeviceSeparator = L' :' ;
45
+ const wchar_t thisOsPathSeparator = L' \\ ' ;
46
+ const wchar_t otherOsPathSeparator = L' /' ;
47
+ const wchar_t DeviceSeparator = L' :' ;
48
48
49
49
// Check if the character given is either type of folder separator.
50
50
// if we want to remove support for "other"separators we can just
@@ -121,23 +121,12 @@ std::wstring CPathUtils::GetLongPathname(const std::wstring& path)
121
121
}
122
122
if (ret == 0 )
123
123
return path;
124
- if (sRet .starts_with (' \\ ' ))
125
- {
126
- ret = GetFullPathName (sRet .c_str (), 0 , nullptr , nullptr );
127
- if (ret)
128
- {
129
- auto fullPath = std::make_unique<wchar_t []>(ret + 2 );
130
- ret = GetFullPathName (sRet .c_str (), ret + 1 , fullPath.get (), nullptr );
131
- if (ret)
132
- sRet = std::wstring (fullPath.get (), ret);
133
- }
134
- }
135
124
return sRet ;
136
125
}
137
126
138
- std::wstring CPathUtils::AdjustForMaxPath (const std::wstring& path)
127
+ std::wstring CPathUtils::AdjustForMaxPath (const std::wstring& path, bool force )
139
128
{
140
- if (path.size () < 248 ) // 248 instead of MAX_PATH because 248 is the limit for directories
129
+ if (!force && path.size () < 248 ) // 248 instead of MAX_PATH because 248 is the limit for directories
141
130
return path;
142
131
if (path.substr (0 , 4 ).compare (L" \\\\ ?\\ " ) == 0 )
143
132
return path;
@@ -708,7 +697,7 @@ bool CPathUtils::CreateRecursiveDirectory(const std::wstring& path)
708
697
public:
709
698
CPathTests ()
710
699
{
711
- assert (CPathUtils::AdjustForMaxPath (L" c:\\ " ) == L" c:\\ " );
700
+ assert (CPathUtils::AdjustForMaxPath (L" c:\\ " , false ) == L" c:\\ " );
712
701
assert (CPathUtils::AdjustForMaxPath (L" c:\\ abcdefghijklmnopqrstuvwxyz\\ abcdefghijklmnopqrstuvwxyz\\ abcdefghijklmnopqrstuvwxyz\\ abcdefghijklmnopqrstuvwxyz\\ abcdefghijklmnopqrstuvwxyz\\ abcdefghijklmnopqrstuvwxyz\\ abcdefghijklmnopqrstuvwxyz\\ abcdefghijklmnopqrstuvwxyz\\ abcdefghijklmnopqrstuvwxyz\\ abcdefghijklmnopqrstuvwxyz" ) == L" \\\\ ?\\ c:\\ abcdefghijklmnopqrstuvwxyz\\ abcdefghijklmnopqrstuvwxyz\\ abcdefghijklmnopqrstuvwxyz\\ abcdefghijklmnopqrstuvwxyz\\ abcdefghijklmnopqrstuvwxyz\\ abcdefghijklmnopqrstuvwxyz\\ abcdefghijklmnopqrstuvwxyz\\ abcdefghijklmnopqrstuvwxyz\\ abcdefghijklmnopqrstuvwxyz\\ abcdefghijklmnopqrstuvwxyz" );
713
702
assert (CPathUtils::GetParentDirectory (L" c:\\ windows\\ system32" ) == L" c:\\ windows" );
714
703
assert (CPathUtils::GetParentDirectory (L" c:\\ " ) == L" " );
0 commit comments