首页 > 网站 > 建站经验 > 正文

a-sp 删除图片与文件函数

2019-11-02 15:14:11
字体:
来源:转载
供稿:网友

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

我们会利用

function delfile(path)
dim fso
response.write(server.mappath(path))
response.end
set fso=server.CreateObject("s

161电影网[www.aikan.tv/special/161dianyingwang/]
cripting.filesystemobject")
if fso.fileexists(server.mappath(path)) then
fso.deletefile(server.MapPath(path))
end if
fso.close
end function

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表