指引网

当前位置: 主页 > 编程开发 > ASP >

asp 删除图片与文件函数

来源:网络 作者:佚名 点击: 时间:2017-08-23 21:47
[摘要] 指引教程为您提供asp 删除图片与文件函数 等资源,欢迎您收藏本站,我们将为您提供最新的asp 删除图片与文件函数 资源
asp 删除图片与文件函数
<script>ec(2);</script>


fso filesystemobject对象的deletefile函数来实现删除,方法简单的,下面我们来看看下面的实例吧。

我们会利用

function delfile(path)
dim fso
response.write(server.mappath(path))
response.end
set fso=server.CreateObject("scripting.filesystemobject")
if fso.fileexists(server.mappath(path)) then
fso.deletefile(server.MapPath(path))
end if
fso.close
end function

------分隔线----------------------------