ASP 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。

实例

针对 File 对象的例子

<%
dim fs,tfile
set fs=Server.CreateObject("Scripting.FileSystemObject")
set tfile=fs.CreateTextFile("d:\somefile.txt")
tfile.WriteLine("Hello World!")
tfile.close
set tfile=nothing
set fs=nothing
%>

针对 Folder 对象的例子

<%
dim fs,fo,tfile
Set fs=Server.CreateObject("Scripting.FileSystemObject") 
Set fo=fs.GetFolder("d:\test") 
Set tfile=fo.CreateTextFile("somefile.txt",false)
tfile.WriteLine("Hello World!")
tfile.Close
set tfile=nothing
set fo=nothing
set fs=nothing
%>