在C#中,Directory.GetFiles
方法的使用方式如下:
using System;
using System.IO;
class Program
{
static void Main()
{
// 指定文件夹路径
string folderPath = @"C:\Users\username\Desktop\TestFolder";
// 获取文件夹中的所有文件
string[] files = Directory.GetFiles(folderPath);
// 遍历文件数组
foreach (string file in files)
{
Console.WriteLine(file);
}
}
}
在上述示例中,我们首先通过Directory.GetFiles
方法获取指定文件夹(folderPath
)中的所有文件,并将结果存储在string[]
数组中。然后,我们使用foreach
循环遍历文件数组,并将每个文件路径打印到控制台上。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c#中binaryreader的用法是什么