View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
ozgrid.com ozgrid.com is offline
external usenet poster
 
Posts: 464
Default How to bypass MkDir when that Dir exists already

If Dir("C:\My Doucuments") < vbNullString Then

End If


--
Regards
Dave Hawley
www.ozgrid.com
"Jan Nademlejnsky" wrote in message
...
I have macro which creates Subdirectories. I need to bypass MkDir command
if that folder already exists. How do you do that?

Thanks for your help.

Jan