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