System.IO.DirectoryInfo.GetFiles 方法

方法描述

返回当前目录的文件列表。

语法定义(C# System.IO.DirectoryInfo.GetFiles 方法 的用法)

public FileInfo[] GetFiles()

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
返回值 System.IO.FileInfo[] FileInfo 类型的数组。

提示和注释

如果 DirectoryInfo 中没有文件,则此方法返回一个空数组。

返回文件的名称顺序无法保证;如果需要特定排序顺序,请使用 Sort() 方法。

此方法预填充下面的 FileInfo 属性的值:

Attributes

CreationTime

CreationTimeUtc

LastAccessTime

LastAccessTimeUtc

LastWriteTime

LastWriteTimeUtc

Length

System.IO.DirectoryInfo.GetFiles 方法例子

下面的示例从指定的目录检索文件。

using System;
using System.IO;

public class GetFilesTest 
{
    public static void Main() 
    {
        // Make a reference to a directory.
        DirectoryInfo di = new DirectoryInfo("c:\\");

        // Get a reference to each file in that directory.
        FileInfo[] fiArr = di.GetFiles();

        // Display the names of the files.
        foreach (FileInfo fri in fiArr)
            Console.WriteLine(fri.Name);
    }
}

异常

异常 异常描述
DirectoryNotFoundException 该路径无效,比如在未映射的驱动器上。

命名空间

namespace: System.IO

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

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.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 系统要求。