文件删除函数
类别: ASP教程
<%
\'文件删除函数
function deletefile(filename)
if filename<>"" then
set fso=server.CreateObject("scripting.filesystemobject")
if fso.FileExists(filename) then
fso.DeleteFile filename
else
Response.Write "<script>alert(\'该文件不存在\');</script>"
end if
end if
end function
strfile=server.MapPath("fileName")
deletefile(strfile)
%>
\'文件删除函数
function deletefile(filename)
if filename<>"" then
set fso=server.CreateObject("scripting.filesystemobject")
if fso.FileExists(filename) then
fso.DeleteFile filename
else
Response.Write "<script>alert(\'该文件不存在\');</script>"
end if
end if
end function
strfile=server.MapPath("fileName")
deletefile(strfile)
%>
- 上一篇: FSO操作示例
- 下一篇: ASP环境下轻松实现报表的打印
-= 资 源 教 程 =-
文 章 搜 索