Hi,
Below code might help you...
Veera
For checking File not exists you can use the below
Below code might help you...
Code:
set objFSO = createobject("Scripting.FileSystemObject")
objFSO.FileExists("C:\FileFolder\Filename.xls")
Veera
For checking File not exists you can use the below
Code:
If not objFSO.FileExists("C:\FileFolder\Filename.xls") then
Your Action...
End if