一聚教程网:一个值得你收藏的教程网站

热门教程

asp 删除图片与文件函数

时间:2022-07-02 22:35:43 编辑:袖梨 来源:一聚教程网


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

热门栏目