を使用して、Windowsパスと相対パスを結合しようとしていPath.Combine
ます。
ただし、の代わりにPath.Combine(@"C:\blah",@"..\bling")
戻ります。C:\blah\..\bling
C:\bling\
私の相対パスリゾルバを作成せずにこれを実現する方法を知っている人はいますか(難しいことではありません)。
を使用して、Windowsパスと相対パスを結合しようとしていPath.Combine
ます。
ただし、の代わりにPath.Combine(@"C:\blah",@"..\bling")
戻ります。C:\blah\..\bling
C:\bling\
私の相対パスリゾルバを作成せずにこれを実現する方法を知っている人はいますか(難しいことではありません)。
回答:
機能するもの:
string relativePath = "..\\bling.txt";
string baseDirectory = "C:\\blah\\";
string absolutePath = Path.GetFullPath(baseDirectory + relativePath);
(結果:absolutePath = "C:\ bling.txt")
機能しないもの
string relativePath = "..\\bling.txt";
Uri baseAbsoluteUri = new Uri("C:\\blah\\");
string absolutePath = new Uri(baseAbsoluteUri, relativePath).AbsolutePath;
(結果:absolutePath = "C:/blah/bling.txt")
C:\\blah..\\bling.txt
しないと、最終的にそれが機能しなくなります。その場合は、手動で文字列に追加するか、追加することができますPath.GetFullPath(Path.Combine(baseDirectory, relativePath))
C:\bling.txt
でしょうか?
組み合わせたパスhttp://msdn.microsoft.com/en-us/library/system.io.path.getfullpath.aspxで Path.GetFullPathを呼び出します
> Path.GetFullPath(Path.Combine(@"C:\blah\",@"..\bling"))
C:\bling
(私はPath.Combineがこれを単独で行うべきであることに同意します)
Path.GetFullPath(Path.Combine(@"..\..\blah",@"\bling"))
Path.GetFullPath(@"c:\windows\temp\..\system32")?
c:\windows\system32
これはあなたに必要なものを正確に与えます(これが機能するためにパスが存在する必要はありません)
DirectoryInfo di = new DirectoryInfo(@"C:\blah\..\bling");
string cleanPath = di.FullName;
バックスラッシュに注意してください。バックスラッシュを忘れないでください(2回使用しないでください)。
string relativePath = "..\\bling.txt";
string baseDirectory = "C:\\blah\\";
//OR:
//string relativePath = "\\..\\bling.txt";
//string baseDirectory = "C:\\blah";
//THEN
string absolutePath = Path.GetFullPath(baseDirectory + relativePath);
Path.GetFullPath()
相対パスでは機能しません。
これは、相対パスと絶対パスの両方で機能するソリューションです。これはLinux + Windowsの両方で機能し..
、テキストの冒頭に期待どおりの状態を維持します(残りは正規化されます)。ソリューションは依然としてPath.GetFullPath
、小さな回避策で修正を行うことに依存しています。
これは拡張メソッドなので、次のように使用します text.Canonicalize()
/// <summary>
/// Fixes "../.." etc
/// </summary>
public static string Canonicalize(this string path)
{
if (path.IsAbsolutePath())
return Path.GetFullPath(path);
var fakeRoot = Environment.CurrentDirectory; // Gives us a cross platform full path
var combined = Path.Combine(fakeRoot, path);
combined = Path.GetFullPath(combined);
return combined.RelativeTo(fakeRoot);
}
private static bool IsAbsolutePath(this string path)
{
if (path == null) throw new ArgumentNullException(nameof(path));
return
Path.IsPathRooted(path)
&& !Path.GetPathRoot(path).Equals(Path.DirectorySeparatorChar.ToString(), StringComparison.Ordinal)
&& !Path.GetPathRoot(path).Equals(Path.AltDirectorySeparatorChar.ToString(), StringComparison.Ordinal);
}
private static string RelativeTo(this string filespec, string folder)
{
var pathUri = new Uri(filespec);
// Folders must end in a slash
if (!folder.EndsWith(Path.DirectorySeparatorChar.ToString())) folder += Path.DirectorySeparatorChar;
var folderUri = new Uri(folder);
return Uri.UnescapeDataString(folderUri.MakeRelativeUri(pathUri).ToString()
.Replace('/', Path.DirectorySeparatorChar));
}