|
|
|
|
|
|
|
|
using System; |
|
|
using System.Collections.Generic; |
|
|
using System.IO; |
|
|
using System.Linq; |
|
|
using System.Text; |
|
|
using System.Threading.Tasks; |
|
|
|
|
|
namespace SlobViewer |
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
public static class PathResolver |
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static string GetPathRelativeToEntryAssembly(string absolutePath) |
|
|
{ |
|
|
if (!Path.IsPathRooted(absolutePath)) |
|
|
throw new ArgumentOutOfRangeException(nameof(absolutePath), "Path is not rooted"); |
|
|
var entryAssemblyDirectory = Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location); |
|
|
|
|
|
if (Path.GetPathRoot(absolutePath) != Path.GetPathRoot(entryAssemblyDirectory)) |
|
|
return null; |
|
|
|
|
|
var absolutePathParts = absolutePath.Split(new char[] { Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar }); |
|
|
var entryAssemblyPathParts = entryAssemblyDirectory.Split(new char[] { Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar }); |
|
|
|
|
|
|
|
|
int rootIndex; |
|
|
for (rootIndex = 0; rootIndex < Math.Min(absolutePathParts.Length, entryAssemblyPathParts.Length); ++rootIndex) |
|
|
{ |
|
|
if (absolutePathParts[rootIndex] != entryAssemblyPathParts[rootIndex]) |
|
|
break; |
|
|
} |
|
|
|
|
|
if (rootIndex == 0) |
|
|
return null; |
|
|
|
|
|
|
|
|
|
|
|
var stb = new StringBuilder(); |
|
|
|
|
|
for (int i = entryAssemblyPathParts.Length - 1; i >= rootIndex; --i) |
|
|
{ |
|
|
stb.Append(".."); |
|
|
stb.Append(Path.DirectorySeparatorChar); |
|
|
} |
|
|
|
|
|
for (int i = rootIndex; i < absolutePathParts.Length; ++i) |
|
|
{ |
|
|
stb.Append(absolutePathParts[i]); |
|
|
if (i != (absolutePathParts.Length - 1)) |
|
|
stb.Append(Path.DirectorySeparatorChar); |
|
|
} |
|
|
|
|
|
return stb.ToString(); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static string ResolvePathRelativeToEntryAssembly(string absolutePath, string relativePath) |
|
|
{ |
|
|
if (File.Exists(absolutePath)) |
|
|
return absolutePath; |
|
|
|
|
|
if (!string.IsNullOrEmpty(relativePath)) |
|
|
{ |
|
|
var entryAssemblyDirectory = Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location); |
|
|
if (!entryAssemblyDirectory.EndsWith("" + Path.DirectorySeparatorChar)) |
|
|
entryAssemblyDirectory += Path.DirectorySeparatorChar; |
|
|
absolutePath = entryAssemblyDirectory + relativePath; |
|
|
FileInfo file = new FileInfo(absolutePath); |
|
|
if (file.Exists) |
|
|
return file.FullName; |
|
|
} |
|
|
|
|
|
return null; |
|
|
} |
|
|
} |
|
|
} |
|
|
|