vote up 1 vote down star

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?

flag

4 Answers

vote up 0 vote down

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|flag
vote up 6 vote down

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

link|flag
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
vote up 0 vote down

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|flag
vote up 3 vote down

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

link|flag
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

Your Answer

Get an OpenID
or

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