萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> asp編程 >> asp 刪除圖片與文件函數

asp 刪除圖片與文件函數

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

copyright © 萬盛學電腦網 all rights reserved