I\'m working with the .NET Compact Framework 3.5 and want to delete some specific folders and their subfolders. When I run the app it gives IO exception. I\'ve tried to use Dire
Try this..
var dir = new DirectoryInfo(@FolderPath); dir.Delete(true);