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對(duì)象
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)用到類的?
- 檢測(cè)函數(shù) asp class
- 遭遇ASP類的事件設(shè)計(jì)
- ASP高亮類
- Object對(duì)象的一些的隱藏函數(shù)介紹
- 淺談ASP中的類
- 在VBScript中使用類
- ASP 類專題
- 代碼與頁(yè)面的分離
- ASP代碼的對(duì)象化
- 一個(gè)asp快速字符串連接類
- 一個(gè)簡(jiǎn)單的asp數(shù)據(jù)庫(kù)操作類
- ASP類編寫詳細(xì)說(shuō)明
- 實(shí)現(xiàn)支持邏輯搜索/單詞搜索/詞組搜索+支持OR/AND關(guān)鍵字的VBS CLASS!
- ASP類Class入門 推薦
- 創(chuàng)建一個(gè)ASP通用分頁(yè)類
- 如何編寫一個(gè)ASP類
- 一個(gè)ACCESS數(shù)據(jù)庫(kù)訪問(wèn)的類第1/3頁(yè)
- 分頁(yè)類,異常類
- ASP 類 Class入門