我正在尝试删除一个文件夹以及该文件夹中的所有文件和文件夹,我在使用下面的代码,但出现错误Folder is not empty
,我可以做什么建议?
try
{
var dir = new DirectoryInfo(@FolderPath);
dir.Attributes = dir.Attributes & ~FileAttributes.ReadOnly;
dir.Delete();
dataGridView1.Rows.RemoveAt(dataGridView1.SelectedRows[i].Index);
}
catch (IOException ex)
{
MessageBox.Show(ex.Message);
}