VB Code to create folders

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?
 
D

Doug Robbins - Word MVP

On Error GoTo mdir
ChDir "C:\MyNewFolder"

mdir:
If Err.Number = 76 Then
MkDir "c:\MyNewFolder"
Else
Exit Sub
End If


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP
 

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

Top