VB Code for Creatnig a Folder

  • Thread starter Thread starter Bikini Browser
  • Start date Start date
B

Bikini Browser

Hi

Does anyone have any VB Code that can create a folder if it does not exist?
Perhaps C:\temp ? And if it does exists, don't do anything.

Where can I look for code like that?

BB
 
Bikini said:
Hi

Does anyone have any VB Code that can create a folder if it does not
exist? Perhaps C:\temp ? And if it does exists, don't do anything.

Where can I look for code like that?

BB

If Dir("C:\Temp", vbDirectory) = "" Then
MkDir ("C:\Temp")
End If
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top