View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Norman Jones Norman Jones is offline
external usenet poster
 
Posts: 5,302
Default Creating Directories

Hi Keith,

On Error Resume Next
MkDir "C:\YourNewFolderName"
On Error GoTo 0

---
Regards,
Norman



"Keith" wrote in message
...
I am looking for a way to check if a directory exists on a
machine. If it dosn't I want to create it.

Can anybody help?