10

次のようなURIタイプのファイルパスからドライブ文字を取得する最も簡単な方法は何ですか?

file:///D:/Directory/File.txt

私はできることを知っています(ここのパスは上記のテキストを含む文字列です)

path = path.Replace(@"file:///", String.Empty);
path = System.IO.Path.GetPathRoot(path);

しかし、それは少しぎこちなく感じます。String.Replace などを使用せずにそれを行う方法はありますか?

4

2 に答える 2

15
var uri = new Uri("file:///D:/Directory/File.txt");
if (uri.IsFile)
{
    DriveInfo di = new DriveInfo(uri.LocalPath);
    var driveName = di.Name; // Result: D:\\
}
于 2012-10-02T07:13:10.930 に答える
2

これは、次のコードを使用して実行できます。

    string path = "file:///D:/Directory/File.txt";
    if(Uri.IsWellFormedUriString(path, UriKind.RelativeOrAbsolute)) {
        Uri uri = new Uri(path);
        string actualPath = uri.AbsolutePath;
    }
于 2012-10-02T07:11:10.277 に答える