asp OpenTextFile文本读取与写入实例代码
当前位置:点晴教程→知识管理交流
→『 技术文档交流 』
打开指定的文件并返回一个 TextStream 对象,可以读取、写入此对象或将其追加到文件。
object.OpenTextFile(filename[, iomode[, create[, format]]])
参数 object :必选项。应为 FileSystemObject 对象的名称。 filename :必选项。字符串表达式,指明要打开的文件名称。 iomode :可选项。输入/输出模式,是下列三个常数之一:ForReading,ForWriting,或 ForAppending。 create :可选项。Boolean 值,指出当指定的 filename 不存在时是否能够创建新文件。允许创建新文件时为 True,否则为 False。默认值为 False。 format :可选项。三个 Tristate 值之一,指出以何种格式打开文件。若忽略此参数,则文件以 ASCII 格式打开。 设置 iomode 参数可为下列设置之一: 常数 值 描述 ForReading 1 以只读模式打开文件。不能对此文件进行写操作。 ForWriting 2 以只写方式打开文件。不能对此文件进行读操作。 ForAppending 8 打开文件并在文件末尾进行写操作。 format 参数可为下列设置之一: 常数 值 描述 TristateUseDefault -2 以系统默认格式打开文件。 TristateTrue -1 以 Unicode 格式打开文件。 TristateFalse 0 以 ASCII 格式打开文件。 说明 以下代码举例说明如何使用 OpenTextFile 方法打开写文件: 代码如下: Sub OpenTextFileTest Const ForReading = 1, ForWriting = 2, ForAppending = 8 Dim fso, f Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.OpenTextFile("c:\testfile.txt", ForWriting, True) f.Write "嗨,你好!" f.Close End Sub The OpenTextFile method opens a specified file and returns a TextStream object that can be used to access the file. Syntax
|
FileSystemObject.OpenTextFile(fname,mode,create,format) |
Parameter参数 | Description描述 |
---|---|
fname | Required. The name of the file to open 必要参数。指定需要打开文件的名称 |
mode | Optional. How to open the file 可选组件。规定打开文件的方式 1=ForReading - Open a file for reading. You cannot write to this file. |
create | Optional. Sets whether a new file can be created if the filename does not exist. True indicates that a new file can be created, and False indicates that a new file will not be created. False is default 可选组件。设置是否可以建立一个原本不存在的新文件。如果为true真,则可以建立一个新的文件,如果为false假,则不可以建立一个新的文件。默认情况是false假。 |
format | Optional. The format of the file 可选组件。规定文件的格式 0=TristateFalse - Open the file as ASCII. This is default. |
<% 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 %> |