ボタンを作成しました。ボタンのイベント ハンドラーで、フォルダー (abc) 内のすべてのファイルを削除します。
このコードは次のとおりです。
private void button1_Click_1(object sender, EventArgs e)
{
MessageBox.Show("Are you sure!!!! The files in the folder will be deleted permanently");
this.Close();
string[] filePaths = Directory.GetFiles(@"C:\abc\");
foreach (string filePath in filePaths)
File.Delete(filePath);
}
たとえば、フォルダーに Word ファイルがあり、それを開くとエラー メッセージが表示されます。
別のプロセスで使用されているため、プロセスはファイル 'C:\abc\New Microsoft Word Document.docx' にアクセスできません。