訪問統計 FSO操作 asp

2022-03-29 01:54:52 字數 2287 閱讀 3270

filesystemobject 物件用於訪問伺服器上的檔案系統。

filesystem和textstream物件可用於建立對檔案系統的訪問,並提供順序訪問檔案的機制。filesystem沒有屬性,只有兩個方法,第乙個方法是createtextfile方法,可以在宿主機上建立新的文字檔案,並返回textstream物件以提供對新建立檔案的訪問機制。第二個是opentextfile方法,用於開啟文字檔案供順序訪問並返回乙個textstream物件.

= = = = = = = = = = = 分 割 線 = = = = = = = = = = == = =

createtextfile 方法

createtextfile 方法可在當前資料夾中建立新的文字檔案,並返回可用於讀或寫檔案的 textstream 物件。

filesystemobject.createtextfile(filename[,overwrite[,unicode]])

folderobject.createtextfile(filename[,overwrite[,unicode]])

引數

描述filename

必需的。需建立檔案的名稱。

overwrite

可選的。指示能否覆蓋已有檔案的布林值。true 指示可覆蓋檔案,false 指示不能覆蓋檔案。預設是 true 。

unicode

可選的。指示檔案是作為 unicode 還是 ascii 檔案來建立的布林值。true 指示檔案作為 unicode 檔案建立,而 false 指示檔案被作為 ascii 檔案建立。預設是 false。

<%

dimfs,tfile

setfs

=server.createobject(

"scripting.filesystemobject")

settfile

=fs.createtextfile(

"c:\somefile.txt")

tfile.writeline(

"hello world!")

tfile.close

settfile

=nothing

setfs

=nothing

%>

= = = = = = = = = = = 分 割 線 = = = = = = = = = = == = =

opentextfile 方法

opentextfile 方法開啟指定的檔案,並返回可用來訪問此檔案的 textstream 物件

filesystemobject.opentextfile(fname,mode,create,format)
引數

描述fname

必需的。要開啟的檔案的名稱。

mode

可選的。如何開啟檔案。

create

可選的。設定如果檔名不存在,是否建立新檔案。true 指示可建立新檔案,而 false 指示新檔案不會被建立。false 是預設的。

format

可選的。檔案的格式。

<%

dimfs,f

setfs

=server.createobject(

"scripting.filesystemobject")

setf="

testread.txt"),

8,true

)f.writeline(

"this text will be added to the end of file")

f.close

setf

=nothing

setfs

=nothing

%>

= = = = = = = = = = = 分 割 線 = = = = = = = = = = == = =

訪問統計

ASP檔案操作 FSO 詳解

語法 object.copyfile 複製路經 貼上路經 如存在,是否替代 set fs server.createobject scripting.filesystemobject fs.copyfile d ss.txt e bb.txt true 用fs的copyfile方法複製檔案 例項三 ...

ASP檔案操作 FSO 詳解

語法 object.copyfile 複製路經 貼上路經 如存在,是否替代 set fs server.createobject scripting.filesystemobject fs.copyfile d ss.txt e bb.txt true 用fs的copyfile方法複製檔案 例項三 ...

楓葉隨風ASP檔案操作類 FSO

屬性 檔案原路徑 source 檔案目標路徑 destination 檔案路徑 path 檔名稱 name 檔案大小 以kb為單位 size 副檔名 extensionname 父檔名稱 parentfoldername 父檔案路徑 parentfolderpath 檔案建立時間 datecreat...