黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

ASP OpenTextFile 方法

asp opentextfile 方法

filesystemobject 對象參考手冊 完整的 filesystemobject 對象參考手冊

opentextfile 方法打開指定的文件,并返回可用來訪問此文件的 textstream 對象。

語法

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

參數(shù) 描述
fname 必需的。要打開的文件的名稱。
mode 可選的。如何打開文件。
1=forreading - 打開文件用于讀取數(shù)據(jù)。您無法向此文件寫數(shù)據(jù)。
2=forwriting - 打開文件用于寫數(shù)據(jù)。
8=forappending - 打開文件,并向文件的末尾寫數(shù)據(jù)。
create 可選的。設置如果文件名不存在,是否創(chuàng)建新文件。true 指示可創(chuàng)建新文件,false 指示新文件不會被創(chuàng)建。false 是默認的。
format 可選的。文件的格式。
0=tristatefalse - 以 ascii 打開文件。默認。
-1=tristatetrue - 以 unicode 打開文件。
-2=tristateusedefault - 使用系統(tǒng)默認格式打開文件。

實例

<%
dim fs,f
set fs=server.createobject("scripting.filesystemobject")
set f=fs.opentextfile(server.mappath("testread.txt"),8,true)
f.writeline("this text will be added to the end of file")
f.close
set f=nothing
set fs=nothing
%>

filesystemobject 對象參考手冊 完整的 filesystemobject 對象參考手冊
相關文章