ฉันกำลังพยายามลบโฟลเดอร์และไฟล์และโฟลเดอร์ทั้งหมดในโฟลเดอร์นั้นฉันใช้รหัสด้านล่างและได้รับข้อผิดพลาด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);
}