共计 711 个字符,预计需要花费 2 分钟才能阅读完成。
在 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 变量中的路径为您要读取的文件夹路径。
丸趣 TV 网 – 提供最优质的资源集合!
正文完