我有一些代码可以根据用户选择的目录将完整的文件名(例如 F:\logs\1234.log)加载到列表框中。当用户选择一个或多个文件并单击输出按钮时,我希望代码通读每个选定的文件。之前,我使用的是组合框和代码:
StreamReader sr = new StreamReader(comboBox1.Text);
这显然不适用于列表框。让程序从列表框中读取用户选择的文件的最简单方法是什么?
您应该在原始问题中更清楚......但如果您需要阅读所有文件:
var items = listBox.SelectedItems;
foreach (var item in items)
{
string fileName = listBox.GetItemText(item);
string fileContents = System.IO.File.ReadAllText(fileName);
//Do something with the file contents
}
如果您选择每次打开一个文件,则解决方案如下:
string[] files = Directory.GetFiles(@"C:\");
listBox1.Items.Clear();
listBox1.Items.AddRange(files);
然后,要获得选择的文件路径:
if (listBox1.SelectedIndex >= 0)
{ // if there is no selectedIndex, property listBox1.SelectedIndex == -1
string file = files[listBox1.SelectedIndex];
FileStream fs = new FileStream(file, FileMode.Open);
// ..
}
您可以做什么来创建一个通用列表,该列表将包含所选文件中的所有文本:
void GetTextFromSelectedFiles()
{
List<string> selectedFilesContent = new List<string>();
for (int i = 0; i < listBox1.SelectedItems.Count; i++)
{
selectedFilesContent.Add(ReadFileContent(listBox1.SelectedItems.ToString()));
}
//when the loop is done, the list<T> holds all the text from selected files!
}
private string ReadFileContent(string path)
{
return File.ReadAllText(path);
}
我认为在您的示例中,当您明确表示“尽可能简单”来读取文件时,最好使用File.ReadAllText()方法,而不是使用 StreamReader 类。
要访问 ListBox 中的所有选定项目,您可以使用 SelectedItems 属性:
foreach (string value in listBox1.SelectedItems)
{
StreamReader sr = new StreamReader(value);
...
}