在 C# 中获取驱动器格式

csharpprogrammingserver side programming

使用 DriveFormat 属性在 C# 中获取驱动器格式。

设置要显示格式 − 的驱动器

DriveInfo dInfo = new DriveInfo("C");

现在,使用 DriveFormat 获取驱动器格式 −

dInfo.DriveFormat

Windows 系统的驱动器格式可以是 NTFS 或 FAT32。

以下是完整代码 −

示例

using System;
using System.Linq;
using System.IO;
public class Demo {
   public static void Main() {
      DriveInfo dInfo = new DriveInfo("C");
      Console.WriteLine("Drive Format = "+dInfo.DriveFormat);
   }
}

输出

以下是输出 −

Drive Format = NTFS

相关文章