would this be better?
http://msdn2.microsoft.com
Main Topics
Browse All TopicsI need a quick code that allows me to create folders from a textbox and have a checkbox to overwrite. i am using visual basic 2005 express.
TIA
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
would this be better?
http://msdn2.microsoft.com
Business Accounts
Answer for Membership
by: jerry_jeremiahPosted on 2006-01-14 at 13:50:59ID: 15701980
You can use the Dir command to check for the existance of a folder like this:
if Dir("C:\Program Files",vbDirectory) = "" then
'doesn't exist
else
'does exist
endif
The Mkdir command will make directories, but only one, so if you want to make a directory like
Mkdir c:\existing1\existing2\new
Mkdir c:\existing1\existing2\new
So you need a loop that will check each directory in the path and if it doesn't exist will create it.