Make it possible to cleanPath() absolute Windows paths

This commit is contained in:
Joas Schilling 2014-11-07 10:52:37 +01:00
parent 39ae569c5c
commit 0ab973a3a6
1 changed files with 11 additions and 2 deletions

View File

@ -698,13 +698,22 @@ class Filesystem {
* @param bool $stripTrailingSlash
* @return string
*/
public static function normalizePath($path, $stripTrailingSlash = true) {
public static function normalizePath($path, $stripTrailingSlash = true, $isAbsolutePath = false) {
if ($path == '') {
return '/';
}
//no windows style slashes
$path = str_replace('\\', '/', $path);
// When normalizing an absolute path, we need to ensure that the drive-letter
// is still at the beginning on windows
$windows_drive_letter = '';
if ($isAbsolutePath && \OC_Util::runningOnWindows() && preg_match('#^([a-zA-Z])$#', $path[0]) && $path[1] == ':' && $path[2] == '/') {
$windows_drive_letter = substr($path, 0, 2);
$path = substr($path, 2);
}
//add leading slash
if ($path[0] !== '/') {
$path = '/' . $path;
@ -733,7 +742,7 @@ class Filesystem {
//normalize unicode if possible
$path = \OC_Util::normalizeUnicode($path);
return $path;
return $windows_drive_letter . $path;
}
/**