up vote 1 down vote favorite
share [g+] share [fb]

According to the doucmentation for "Directory.Delete( "path", true )", it remove directories, subdirectories, and files in the path.

What does Directory.Delete( "path", false ) do? According to the doucmentation it does "otherwise".

I mean how can you delete a directory without removing the directory, subdirectories, and files?

link|improve this question
feedback

4 Answers

Bill James is correct. According to MSDN, if the recursive parameter is false and the directory is not empty, IOException will be thrown.

link|improve this answer
You are right, that was burried in the exception explanations. – W Hackley Oct 9 '08 at 23:01
Fine, DO the research then, TAKE the upticks :) Where's that guy griping about fastest gun in the West, again? – Bill James Oct 9 '08 at 23:10
feedback

Just a quick guess, since I don't do .Net, but I'd say it will only remove empty directories.

link|improve this answer
You were first... – tvanfosson Oct 9 '08 at 23:14
Ya, I know, but it really was just an educated guess. jleedev actually looked it up, which I can admit was more work than I was willing to put into it. – Bill James Oct 9 '08 at 23:19
feedback

Second argument tells whether you want a recursive delete. If it's false, the method will throw an IOException if the directory is not empty.

link|improve this answer
feedback

Suppose the intent of the code is to delete directories only if they're empty. Setting the second parameter to false enforces that policy/intent.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown