Does anyone know what's the .NET/C# equivalent of Delphi's forceDirectory function ? For who don't know delphi, forceDirectory creates all the directories in a given path if it doesn't exist.

link|improve this question
feedback

1 Answer

up vote 18 down vote accepted

I believe Directory.CreateDirectory(path) automatically creates all the directories/subdirectories specified in the path.

http://msdn.microsoft.com/en-us/library/54a0at6s.aspx

link|improve this answer
1  
You believe correctly, from the Remarks: "Any and all directories specified in path are created". The restrictions nd conditions are the same as for ForceDirectory – Henk Holterman Jun 5 '09 at 7:18
feedback

Your Answer

 
or
required, but never shown

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