SmileeTiger
Programmer
I want to create a directory that is several sub directories besed upon user input. I can do it fin if the user specifies say c:\test\ however if they want to create c:\test\test\ and c:\test does not exist CreateDirectory won't work. I could parse the string that is input and create c:\test\ first then create c:\test\test\ however there should be an easier way to do this.. any tips?