这似乎是一个愚蠢的问题,所以这里是:
除了解析驱动器号的FileInfo.FullPath字符串之外,然后使用DriveInfo("c")等来查看是否有足够的空间来写入此文件.有没有办法从FileInfo获取驱动器号?
FileInfo f = new FileInfo(path); string drive = Path.GetPathRoot(f.FullName);
这将返回"C:\".这真的是唯一的另一种方式.
嗯,还有这个:
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();