Path.Combine絶対パスと相対パス文字列


94

を使用して、Windowsパスと相対パスを結合しようとしていPath.Combineます。

ただし、の代わりにPath.Combine(@"C:\blah",@"..\bling")戻ります。C:\blah\..\blingC:\bling\

私の相対パスリゾルバを作成せずにこれを実現する方法を知っている人はいますか(難しいことではありません)。



5
ここでは別の答えを得ています。重複しているとは思いません
CVertex

1
それは重複していますが、Path.GetFullNameがより良い解決策だと思います。
グレッグディーン

あなたは自分と矛盾しました。しかし、別の答えをありがとう。
CVertex 2009年

回答:


63

機能するもの:

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")


8
はい、それが私が投稿に
ほのめかし

7
baseDirectoryの末尾に\\があることを確認してください。そうC:\\blah..\\bling.txtしないと、最終的にそれが機能しなくなります。その場合は、手動で文字列に追加するか、追加することができますPath.GetFullPath(Path.Combine(baseDirectory, relativePath))
Nelson Rothermel

5
What Worksセクションの結果はどうC:\bling.txtでしょうか?
cod3monk3y 2014

URIベースの方法が機能しないのはなぜですか?この回答によると、結果は有効です(Windowsでも認識されるようです)。
2017年

37

組み合わせたパス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"))
derekantrican


4

WindowsユニバーサルアプリPath.GetFullPath()が利用できない場合は、System.Uri代わりにクラスを使用できます。

 Uri uri = new Uri(Path.Combine(@"C:\blah\",@"..\bling"));
 Console.WriteLine(uri.LocalPath);

3

これはあなたに必要なものを正確に与えます(これが機能するためにパスが存在する必要はありません)

DirectoryInfo di = new DirectoryInfo(@"C:\blah\..\bling");
string cleanPath = di.FullName;

1
Path.GetFullPath()とDirectoryInfo.FullNameの両方が架空のパスで機​​能します。問題は、ファイルが実際に存在する場合、実行プロセスにはFileIOPermission-両方のAPIでtrueが必要です。(MSDNを参照)
Paul Williams

1

バックスラッシュに注意してください。バックスラッシュを忘れないでください(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);

0

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));
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.