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
 
Back
Top