मैं उस फ़ोल्डर के भीतर एक फ़ोल्डर और सभी फ़ाइलों और फ़ोल्डरों को हटाने की कोशिश कर रहा हूं, मैं नीचे दिए गए कोड का उपयोग कर रहा हूं और मुझे त्रुटि मिलती है 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);
}