Skip to content

Commit ec4c06c

Browse files
committed
add a force flag
1 parent edd7a37 commit ec4c06c

File tree

2 files changed

+8
-19
lines changed

2 files changed

+8
-19
lines changed

PathUtils.cpp

+6-17
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ namespace
4242
{
4343
// These variables are not exposed as any path name handling probably
4444
// 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':';
4848

4949
// Check if the character given is either type of folder separator.
5050
// if we want to remove support for "other"separators we can just
@@ -121,23 +121,12 @@ std::wstring CPathUtils::GetLongPathname(const std::wstring& path)
121121
}
122122
if (ret == 0)
123123
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-
}
135124
return sRet;
136125
}
137126

138-
std::wstring CPathUtils::AdjustForMaxPath(const std::wstring& path)
127+
std::wstring CPathUtils::AdjustForMaxPath(const std::wstring& path, bool force)
139128
{
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
141130
return path;
142131
if (path.substr(0, 4).compare(L"\\\\?\\") == 0)
143132
return path;
@@ -708,7 +697,7 @@ bool CPathUtils::CreateRecursiveDirectory(const std::wstring& path)
708697
public:
709698
CPathTests()
710699
{
711-
assert(CPathUtils::AdjustForMaxPath(L"c:\\") == L"c:\\");
700+
assert(CPathUtils::AdjustForMaxPath(L"c:\\", false) == L"c:\\");
712701
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");
713702
assert(CPathUtils::GetParentDirectory(L"c:\\windows\\system32") == L"c:\\windows");
714703
assert(CPathUtils::GetParentDirectory(L"c:\\") == L"");

PathUtils.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// sktoolslib - common files for SK tools
22

3-
// Copyright (C) 2013-2014, 2017, 2020-2021 - Stefan Kueng
3+
// Copyright (C) 2013-2014, 2017, 2020-2021, 2023 - Stefan Kueng
44

55
// This program is free software; you can redistribute it and/or
66
// modify it under the terms of the GNU General Public License
@@ -26,7 +26,7 @@ class CPathUtils
2626
{
2727
public:
2828
static std::wstring GetLongPathname(const std::wstring& path);
29-
static std::wstring AdjustForMaxPath(const std::wstring& path);
29+
static std::wstring AdjustForMaxPath(const std::wstring& path, bool force = true);
3030

3131
static std::wstring GetParentDirectory(const std::wstring& path);
3232
static std::wstring GetFileExtension(const std::wstring& path);

0 commit comments

Comments
 (0)