ASP OpenTextFile 方法
asp opentextfile 方法

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
%>
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
%>

相關文章
- ASP 程序
- ASP Server 對象
- ASP FileSystem 對象
- ASP TextStream 對象
- ASP File 對象
- ASP Folder 對象
- AJAX 數(shù)據(jù)庫
- ASP AtEndOfStream 屬性
- ASP Column 屬性
- ASP Close 方法
- ASP ReadAll 方法
- ASP SkipLine 方法
- ASP WriteLine 方法
- ASP WriteBlankLines 方法
- ASP DateLastAccessed 屬性
- ASP DateLastModified 屬性
- ASP ParentFolder 屬性
- ASP Path 屬性
- ASP ShortName 屬性
- ASP Type 屬性