asp fso操作類
代碼如下:
<%
'================================================================
'= 系統(tǒng)版本:1.0 =
'= 文件版本:1.0 =
'= 文本創(chuàng)建日期:2005-10-31 =
'================================================================
class cls_io
private filesystemobject
private sub class_terminate()
if isobject(filesystemobject) then
set filesystemobject = nothing
end if
end sub
'//創(chuàng)建filesystemobject對象
public function init_object()
on error resume next
if not isobject(filesystemobject) then
set filesystemobject = server.createobject("scripting.filesystemobject")
if err.number <> 0 then
init_object = false
err.clear
exit function
else
init_object = true
end if
end if
end function
public sub deletefile(byval str)
on error resume next
call filesystemobject.deletefile(server.mappath("../uploadfile/"&str))
end sub
public function isfolder(byval str)
isfolder = filesystemobject.folderexists(str)
end function
public function showfolder(byval str)
dim obj_folder,obj_file
set obj_folder = filesystemobject.getfolder(server.mappath(str))
set showfolder = obj_folder.files
set obj_folder = nothing
end function
end class
%>
相關(guān)文章
- ASP怎么談到應(yīng)用到類的?
- 檢測函數(shù) asp class
- 遭遇ASP類的事件設(shè)計(jì)
- ASP高亮類
- Object對象的一些的隱藏函數(shù)介紹
- 淺談ASP中的類
- 在VBScript中使用類
- ASP 類專題
- 代碼與頁面的分離
- ASP代碼的對象化
- 一個asp快速字符串連接類
- 一個簡單的asp數(shù)據(jù)庫操作類
- ASP類編寫詳細(xì)說明
- 實(shí)現(xiàn)支持邏輯搜索/單詞搜索/詞組搜索+支持OR/AND關(guān)鍵字的VBS CLASS!
- ASP類Class入門 推薦
- 創(chuàng)建一個ASP通用分頁類
- 如何編寫一個ASP類
- 一個ACCESS數(shù)據(jù)庫訪問的類第1/3頁
- 分頁類,異常類
- ASP 類 Class入門