03-16-2012, 10:02 AM
Hi,
U can use FSO, it will help u out.
file_location---> complete path for ur file to open/read
Regards,
Sankalp
U can use FSO, it will help u out.
Code:
Set fso=CreateObject("Scripting.FileSystemObject")
If (fso.FileExists(file_location)) Then
'do something
else
'do something
End If
Regards,
Sankalp