Verificando se um arquivo existe
Set Arquivo = Server.CreateObject("Scripting.FileSystemObject") If Arquivo.FileExists( Server.MapPath("meu_arquivo.html") ) Then Response.Write "O arquivo listado existe!" Else Response.Write "O arquivo listado não existe" End If Set Arquivo = Nothing
|
Autor: Diego Silva
|
fonte: portaldaprogramacao.com