summaryrefslogtreecommitdiff
path: root/shared/longPathPrefix.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:05:30 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:05:30 +0200
commitc0fce877c478ddbf71a1b651c789e5ea00a00144 (patch)
treede01b0ae8fd296bd24fbca54a80f2f0ba071d461 /shared/longPathPrefix.cpp
parent3.3 (diff)
downloadFreeFileSync-c0fce877c478ddbf71a1b651c789e5ea00a00144.tar.gz
FreeFileSync-c0fce877c478ddbf71a1b651c789e5ea00a00144.tar.bz2
FreeFileSync-c0fce877c478ddbf71a1b651c789e5ea00a00144.zip
3.4
Diffstat (limited to 'shared/longPathPrefix.cpp')
-rw-r--r--shared/longPathPrefix.cpp46
1 files changed, 6 insertions, 40 deletions
diff --git a/shared/longPathPrefix.cpp b/shared/longPathPrefix.cpp
index 9ce74c8b..e8b14b90 100644
--- a/shared/longPathPrefix.cpp
+++ b/shared/longPathPrefix.cpp
@@ -1,45 +1,11 @@
+// **************************************************************************
+// * This file is part of the FreeFileSync project. It is distributed under *
+// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
+// * Copyright (C) 2008-2010 ZenJu (zhnmju123 AT gmx.de) *
+// **************************************************************************
+//
#include "longPathPrefix.h"
-#include <boost/scoped_array.hpp>
#include <wx/msw/wrapwin.h> //includes "windows.h"
-#include "fileError.h"
-#include "systemFunctions.h"
-#include "stringConv.h"
-#include <wx/intl.h>
-
-namespace
-{
-Zstring getFullPathName(const Zstring& relativeName, size_t proposedBufferSize = 1000)
-{
- using namespace FreeFileSync;
-
- boost::scoped_array<DefaultChar> fullPath(new DefaultChar[proposedBufferSize]);
- const DWORD rv = ::GetFullPathName(
- relativeName.c_str(), //__in LPCTSTR lpFileName,
- proposedBufferSize, //__in DWORD nBufferLength,
- fullPath.get(), //__out LPTSTR lpBuffer,
- NULL); //__out LPTSTR *lpFilePart
- if (rv == 0 || rv == proposedBufferSize)
- throw FileError(wxString(_("Error resolving full path name:")) + wxT("\n\"") + zToWx(relativeName) + wxT("\"") +
- wxT("\n\n") + FreeFileSync::getLastErrorFormatted());
- if (rv > proposedBufferSize)
- return getFullPathName(relativeName, rv);
-
- return fullPath.get();
-}
-}
-
-
-Zstring FreeFileSync::resolveRelativePath(const Zstring& path) //throw()
-{
- try
- {
- return getFullPathName(path);
- }
- catch (...)
- {
- return path;
- }
-}
//there are two flavors of long path prefix: one for UNC paths, one for regular paths
bgstack15