Nuclex.Support/Source/PathHelper.cs
2024-06-13 18:36:21 +02:00

95 lines
3.5 KiB
C#

#region Apache License 2.0
/*
Nuclex .NET Framework
Copyright (C) 2002-2024 Markus Ewald / Nuclex Development Labs
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#endregion // Apache License 2.0
using System;
using System.Text;
using System.IO;
namespace Nuclex.Support {
/// <summary>Utility class for path operations</summary>
public static class PathHelper {
/// <summary>Converts an absolute path into a relative one</summary>
/// <param name="basePath">Base directory the new path should be relative to</param>
/// <param name="absolutePath">Absolute path that will be made relative</param>
/// <returns>
/// A path relative to the indicated base directory that matches the
/// absolute path given.
/// </returns>
public static string MakeRelative(string basePath, string absolutePath) {
string[] baseDirectories = basePath.Split(Path.DirectorySeparatorChar);
string[] absoluteDirectories = absolutePath.Split(Path.DirectorySeparatorChar);
// Find the common root path of both paths so we know from which point on
// the two paths will differ
int lastCommonRoot = -1;
int commonLength = Math.Min(baseDirectories.Length, absoluteDirectories.Length);
for(int index = 0; index < commonLength; ++index) {
if(absoluteDirectories[index] == baseDirectories[index]) {
lastCommonRoot = index;
} else {
break;
}
}
// If the paths don't share a common root, we have to use an absolute path.
// Should the absolutePath parameter actually be a relative path, this will
// also trigger the return of the absolutePath as-is.
if(lastCommonRoot == -1) {
return absolutePath;
}
// Calculate the required length for the StringBuilder in order to be slightly
// more friendly in terms of memory usage.
int requiredLength = (baseDirectories.Length - (lastCommonRoot + 1)) * 3;
for(int index = lastCommonRoot + 1; index < absoluteDirectories.Length; ++index) {
requiredLength += absoluteDirectories[index].Length + 1;
}
StringBuilder relativePath = new StringBuilder(requiredLength);
// Go to the common path by adding .. until we're where we want to be
for(int index = lastCommonRoot + 1; index < baseDirectories.Length; ++index) {
if(baseDirectories[index].Length > 0) {
if(relativePath.Length > 0) { // We don't want the path to start with a slash
relativePath.Append(Path.DirectorySeparatorChar);
}
relativePath.Append("..");
}
}
// Now that we're in the common root folder, enter the folders that
// the absolute target path has in addition to the root folder.
for(int index = lastCommonRoot + 1; index < absoluteDirectories.Length; index++) {
if(relativePath.Length > 0) { // We don't want the path to start with a slash
relativePath.Append(Path.DirectorySeparatorChar);
}
relativePath.Append(absoluteDirectories[index]);
}
return relativePath.ToString();
}
}
} // namespace Nuclex.Support