Path รวมค่าสัมบูรณ์กับสตริงพา ธ สัมพัทธ์


96

ฉันกำลังพยายามเข้าร่วมเส้นทางของ Windows ด้วยเส้นทางสัมพัทธ์โดยใช้ Path.Combine .

อย่างไรก็ตามPath.Combine(@"C:\blah",@"..\bling")ผลตอบแทนC:\blah\..\blingC:\bling\แทน

ไม่มีใครรู้วิธีทำสิ่งนี้ให้สำเร็จโดยไม่ต้องเขียนตัวแก้ไขเส้นทางสัมพัทธ์ของตัวเอง (ซึ่งไม่ควรยากเกินไป)



5
เราได้รับคำตอบที่แตกต่างกันที่นี่ .. ฉันไม่คิดว่ามันซ้ำกัน
CVertex

1
มันซ้ำกันแม้ว่าฉันคิดว่า Path.GetFullName เป็นทางออกที่ดีกว่า
Greg Dean

คุณแค่ขัดแย้งกับตัวเอง แต่ขอบคุณสำหรับคำตอบอื่น
CVertex

อาจซ้ำกันได้ของPath. รวมและสัญกรณ์จุด
Julien Bérubé

คำตอบ:


64

งานอะไร:

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
ใช่นั่นคือสิ่งที่ฉันพูดแทรกในโพสต์
Llyle

7
ตรวจสอบให้แน่ใจว่า baseDirectory มี \\ ต่อท้ายมิฉะนั้นคุณจะจบลงด้วยC:\\blah..\\bling.txtและไม่ได้ผล ในกรณีนี้คุณสามารถเพิ่มลงในสตริงด้วยตนเองหรือ doPath.GetFullPath(Path.Combine(baseDirectory, relativePath))
Nelson Rothermel

5
ผลลัพธ์ของส่วนWhat Worksของคุณควรเป็นC:\bling.txtอย่างไร?
cod3monk3y

เหตุใดวิธีการตาม URI จึงไม่ทำงาน ตามคำตอบนี้ผลลัพธ์นั้นใช้ได้ (และดูเหมือนว่าจะได้รับการยอมรับใน Windows ด้วย )
FH

38

เรียก Path.GetFullPath บนเส้นทางรวมhttp://msdn.microsoft.com/en-us/library/system.io.path.getfullpath.aspx

> Path.GetFullPath(Path.Combine(@"C:\blah\",@"..\bling"))
C:\bling

(ฉันเห็นด้วย Path รวมกันควรทำด้วยตัวเอง)


โปรดทราบว่าวิธีนี้ใช้ได้เฉพาะเมื่อเส้นทางแรกเป็นเส้นทางสัมบูรณ์ ใช้ไม่ได้กับ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 (ดู MSDN)
Paul Williams

1

ระวัง Backslashes อย่าลืม (อย่าใช้สองครั้ง :)

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.