Assuming I have a folder structure like:

C:\MyTemp
   - MySubFolder

If I try to delete this using:

Dim path As String = "C:\MyTemp"
Dim di As System.IO.DirectoryInfo
di = System.IO.Directory.CreateDirectory(path)
di.CreateSubdirectory("MySubFolder")
di.Delete(True)

This works fine, unless I have Windows Explorer open and I'm looking at the 'MySubFolder' directory. Then I get an IOException The directory is not empty. - clicking OK dismisses this and then the folder structure is not deleted.

Any thoughts on how I can get this to perform correctly (i.e. delete), even when running this code while having the folder struture open in Windows Explorer?

link|improve this question

3  
Note that this is standard behavior of the shell. You will get the same error message from rmdir /S. I guess the deletion basically fails because Explorer still has a handle to the subfolder open. – 0xA3 Nov 5 '10 at 0:40
@0xA3 - It's not consistent. See my comment on the answer below. There are cases where I can delete a folder while looking at it in Windows Explorer and then Explorer just navs to the parent folder of the child that was deleted. – Otaku Nov 5 '10 at 0:44
feedback

4 Answers

up vote 3 down vote accepted

Raymond Chen sheds some light on this topic (check out his blog, there is a follow-up post announced):

The curse of the current directory

link|improve this answer
Came back to this thread to revisit any solutions and you're right, the follow up article explains the issue - blogs.msdn.com/b/oldnewthing/archive/2010/11/12/10089878.aspx. In the cases where I can't close it, I use the Open Common Dialog and that changes the current directory. In the cases where I hard-code specified a file, the issue doesn't occur. This is good, at least now I know how to get around this - when using the Open Common Dialog, grab the Current Directory first, then open the dialog, pick my file and then set the Current Directory back to it's original value. Thanks! – Otaku Jan 25 '11 at 18:37
feedback

Only way you could get this to "work" 100% consistently is by nuking explorer (bad idea) or nuking the handle (also bad idea)

My recommendation would be to just handle the failure gracefully as opposed to trying this.

link|improve this answer
feedback

Check out this article. IOException can be generated from an open handle to the directory: This open handle can result from enumerating directories and files which is exactly what opening in explorer does. Sounds like the actual error message is generic.

link|improve this answer
yeah, i had read that, but it states that it only applies to WinXP and earlier. secondly, assume under a MySubfolder I have another subfolder called "Temp" and a file in it called "mypic.jpg". If I'm looking at the "Temp" folder in Windows Explorer and delete it (and the jpg) using the code above, it does delete. It's been inconsistent and I'm not sure what to do about it. – Otaku Nov 5 '10 at 0:42
feedback

The best you can do is catch the error and then use handle.exe to find out which process is using the file and ask the user to close the application with options to retry or cancel.

Ever wondered which program has a particular file or directory open? Now you can find out. Handle is a utility that displays information about open handles for any process in the system. You can use it to see the programs that have a file open, or to see the object types and names of all the handles of a program.

Some more info here:

http://stackoverflow.com/questions/3971180/how-to-monitor-process-io-activity-using-c

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.