最新的Web开发教程
 

ASP OpenTextFile方法


<完整FileSystemObject对象参考

OpenTextFile方法打开指定的文件,并返回可被用来访问该文件的TextStream对象。

句法

FileSystemObject.OpenTextFile(fname,mode,create,format)

参数 描述
fname 需要。 该文件的名称打开
mode 可选的。 如何打开文件
1 = ForReading的 - 打开一个文件进行读取。 你不能写这个文件。
2 = ForWriting - 打开文件进行写入。
8 = ForAppending - 打开一个文件,并写入到该文件的末尾。
create 可选的。 设置是否如果文件名不存在,一个新的文件可以被创建。 True表示一个新的文件可以被创建,假表明,一个新的文件将不会被创建。 False是默认值
format 可选的。 该文件的格式
0 = TristateFalse - 打开该文件作为ASCII。 这是默认的。
-1 = TristateTrue - 打开文件为Unicode。
-2 = TristateUseDefault - 打开使用系统默认该文件。

<%
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对象参考