当前位置:  开发笔记 > 编程语言 > 正文

从路径字符串或FileInfo获取驱动器号

如何解决《从路径字符串或FileInfo获取驱动器号》经验,为你挑选了2个好方法。

这似乎是一个愚蠢的问题,所以这里是:

除了解析驱动器号的FileInfo.FullPath字符串之外,然后使用DriveInfo("c")等来查看是否有足够的空间来写入此文件.有没有办法从FileInfo获取驱动器号?



1> BFree..:
FileInfo f = new FileInfo(path);    
string drive = Path.GetPathRoot(f.FullName);

这将返回"C:\".这真的是唯一的另一种方式.



2> Dan Tao..:

嗯,还有这个:

FileInfo file = new FileInfo(path);
DriveInfo drive = new DriveInfo(file.Directory.Root.FullName);

嘿,为什么不是扩展方法呢?

public static DriveInfo GetDriveInfo(this FileInfo file)
{
    return new DriveInfo(file.Directory.Root.FullName);
}

然后你可以这样做:

DriveInfo drive = new FileInfo(path).GetDriveInfo();

推荐阅读
黄晓敏3023
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有