<%
'ASP判断文件是否存在以及删除文件实例代码
dim htmlFilefs
htmlFile="../book_show.html"
htmlFile=server.MapPath(htmlFile)                       
Set fs=Server.CreateObject("Scripting.FileSystemObject")
If fs.FileExists(htmlFile) Then   '判断文件是否存在
         fs.DeleteFile htmlFile,true  '如果文件存在,则删除文件
end if
Set fs=Nothing
%>