私がやりたいことは、複数のファイルを開き、すべてのファイルからテキストを読み取り、特定のキーワードをチェックして、それらすべてを新しいファイルに出力することです。完了すると、すべてのキーワードを含む新しいファイルが作成されます。すでに foreach を使用してすべてのファイル名を反復処理しており、複数のファイルを開く方法は知っていますが、コンテンツを取得して特定の条件を確認しながら同時に印刷するにはどうすればよいでしょうか?
以下は、私がこれまでに持っているもののほんの一例であり、かなり標準的なものです。
みんなありがとう!
if (dr == System.Windows.Forms.DialogResult.OK)
{
// Read the files
foreach (String file in openFileDialog1.FileNames)
{
try
{
listView1.Items.Add(file);
}
catch (SecurityException ex)
{
// The user lacks appropriate permissions to read files, discover paths, etc.
MessageBox.Show("Security error. Please contact your administrator for details.\n\n" +
"Error message: " + ex.Message + "\n\n" +
"Details (send to Support):\n\n" + ex.StackTrace
);
}
catch (Exception ex)
{
// Could not load the image - probably related to Windows file system permissions.
MessageBox.Show("Cannot display the image: " + file.Substring(file.LastIndexOf('\\'))
+ ". You may not have permission to read the file, or " +
"it may be corrupt.\n\nReported error: " + ex.Message);
}
}
}