c# 获取文件夹下文件路径
时间: 2023-10-10 13:07:44 浏览: 195
C# 获取文件路径
5星 · 资源好评率100%
您可以使用C#的`Directory`类和`File`类来获取文件夹下的文件路径。下面是一个示例代码:
```csharp
using System.IO;
string folderPath = @"C:\example\folder";
string[] filePaths = Directory.GetFiles(folderPath);
foreach (string filePath in filePaths)
{
Console.WriteLine(filePath);
}
```
这段代码将打印出文件夹`C:\example\folder`下所有文件的路径。您可以根据需要更改文件夹路径。
阅读全文