System.IO.DriveInfo.GetDrives 方法

方法描述

检索计算机上的所有逻辑驱动器的驱动器名称。

语法定义(C# System.IO.DriveInfo.GetDrives 方法 的用法)

public static DriveInfo[] GetDrives()

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
返回值 System.IO.DriveInfo[] DriveInfo 类型的数组,表示计算机上的逻辑驱动器。

提示和注释

此方法检索计算机上的所有逻辑驱动器名称。 可以使用此信息循环访问数组,使用其他 DriveInfo 方法和属性获取有关驱动器的信息。 使用 IsReady 属性测试驱动器是否已准备好,因为在未准备好的驱动器上使用此方法会引发 IOException。

System.IO.DriveInfo.GetDrives 方法例子

下面的代码示例演示如何使用 DriveInfo 类显示有关当前系统中所有驱动器的信息。

using System;
using System.IO;

class Test
{
    public static void Main()
    {
        DriveInfo[] allDrives = DriveInfo.GetDrives();

        foreach (DriveInfo d in allDrives)
        {
            Console.WriteLine("Drive {0}", d.Name);
            Console.WriteLine("  File type: {0}", d.DriveType);
            if (d.IsReady == true)
            {
                Console.WriteLine("  Volume label: {0}", d.VolumeLabel);
                Console.WriteLine("  File system: {0}", d.DriveFormat);
                Console.WriteLine(
                    "  Available space to current user:{0, 15} bytes", 
                    d.AvailableFreeSpace);

                Console.WriteLine(
                    "  Total available space:          {0, 15} bytes",
                    d.TotalFreeSpace);

                Console.WriteLine(
                    "  Total size of drive:            {0, 15} bytes ",
                    d.TotalSize);
            }
        }
    }
}
/* 
This code produces output similar to the following:

Drive A:\
  File type: Removable
Drive C:\
  File type: Fixed
  Volume label: 
  File system: FAT32
  Available space to current user:     4770430976 bytes
  Total available space:               4770430976 bytes
  Total size of drive:                10731683840 bytes 
Drive D:\
  File type: Fixed
  Volume label: 
  File system: NTFS
  Available space to current user:    15114977280 bytes
  Total available space:              15114977280 bytes
  Total size of drive:                25958948864 bytes 
Drive E:\
  File type: CDRom

The actual output of this code will vary based on machine and the permissions
granted to the user executing it.
*/

异常

异常 异常描述
IOException 发生了 I/O 错误(例如,磁盘错误或驱动器未准备好)。
UnauthorizedAccessException 调用方没有所要求的权限。

命名空间

namespace: System.IO

程序集: mscorlib(在 mscorlib.dll 中)

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。