codice:
set fso = server.createObject("Scripting.FileSystemObject")
if fso.fileExists(server.mapPath("\cartella\file.txt")) then
' il file esiste
else
' il file non esiste
end if
set fso = nothing