View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Dana DeLouis[_3_] Dana DeLouis[_3_] is offline
external usenet poster
 
Posts: 690
Default check and create folder for saveas

Just another idea...

s = "C:\Demo"
With CreateObject("Scripting.FileSystemObject")
If Not .FolderExists(s) Then .CreateFolder (s)
End With

--
Dana DeLouis
Win XP & Office 2003


"Bob Phillips" wrote in message
...
Hi Sunil,

One way

Sub Test()
Dim sFolder As String

sFolder = "C:\Mytest\New Dir"
If Not FolderExists(sFolder) Then
MkDir sFolder
End If

End Sub

'-----------------------------------------------------------------
Function FolderExists(Folder) As Boolean
'-----------------------------------------------------------------
Dim sFolder As String
On Error Resume Next
sFolder = Dir(Folder, vbDirectory)
If sFolder < "" Then
If (GetAttr(sFolder) And vbDirectory) = vbDirectory Then
FolderExists = True
End If
End If
End Function


--

HTH

RP

"Sunil" wrote in message
...
how do you chech if a folder exists and create one on A: drive is it is

not
there ?
Please help a newbie- Thanks :-}