asp

位置:IT落伍者 >> asp >> 浏览文章

asp 删除图片与文件函数


发布日期:2018年03月07日
 
asp 删除图片与文件函数

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

我们会利用

function delfile(path)
dim fso
responsewrite(servermappath(path))
responseend
set fso=serverCreateObject("scriptingfilesystemobject")
if fsofileexists(servermappath(path)) then
fsodeletefile(serverMapPath(path))
end if
fsoclose
end function

上一篇:ASP隐藏下载地址及防盗代码

下一篇:asp采集数据并自动判断网页编码并转换