在 C# 中获取驱动器格式
使用 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
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP