在C#中,可以使用Directory.GetFiles()
方法来获取文件夹中的所有文件。以下是一个示例代码:
using System;
using System.IO;
class Program
{
static void Main()
{
string folderPath = @"C:\YourFolder\";
string[] files = Directory.GetFiles(folderPath);
foreach (string file in files)
{
Console.WriteLine(file);
}
}
}
在上面的示例中,首先指定了要获取文件的文件夹路径folderPath
,然后使用Directory.GetFiles()
方法获取该文件夹中的所有文件,并将文件路径存储在一个字符串数组中。最后,使用foreach循环遍历输出每个文件的路径。
运行此代码将会输出文件夹中所有文件的路径。