Silver_cuts,
Here is a code snippet
Code:
dim fso
set fso = CreateObject("Scripting.FileSystemObject")
'Change name here to point to a file
theFile = "C:\\AFileOnYourServer.txt"
if fso.fileExists(theFile) then
'Do Your Stuff
Response.write("Yes the file exists")
else
Response.write("The file does not exist")
end if
======================================
They say, best men are molded out of faults,
And, for the most, become much more the better
For being a little bad.
======================================