在WinForm中,可以使用System.IO命名空間中的Directory類來讀取文件夾中的文件。以下是一個簡單的示例代碼,演示如何讀取文件夾中的文件并將文件名顯示在ListBox控件中:
using System;
using System.IO;
using System.Windows.Forms;
namespace ReadFilesInFolder
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btnLoadFiles_Click(object sender, EventArgs e)
{
// 指定要讀取的文件夾路徑
string folderPath = @"C:\path\to\folder";
// 檢查文件夾是否存在
if (Directory.Exists(folderPath))
{
// 獲取文件夾中的文件
string[] files = Directory.GetFiles(folderPath);
// 將文件名顯示在ListBox控件中
foreach (string file in files)
{
listBoxFiles.Items.Add(Path.GetFileName(file));
}
}
else
{
MessageBox.Show("文件夾不存在!");
}
}
}
}
在上面的示例代碼中,btnLoadFiles_Click方法會在單擊按鈕時讀取指定文件夾中的文件,并將文件名顯示在名為listBoxFiles的ListBox控件中。請確保替換folderPath變量中的路徑為您要讀取的文件夾路徑。