ASP CreateTextFile 方法

2018-09-08 23:24 更新

ASP CreateTextFile 方法


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

CreateTextFile 方法在當(dāng)前文件夾創(chuàng)建一個新的文本文件,并返回一個供讀寫此文件的 TextStream 對象。

語法

FileSystemObject.CreateTextFile(filename[,overwrite[,unicode]])

FolderObject.CreateTextFile(filename[,overwrite[,unicode]])

參數(shù) 描述
filename 必需的。要創(chuàng)建的文件的名稱。
overwrite 可選的。指示是否可覆蓋已有文件的布爾值。True 表示可覆蓋此文件,F(xiàn)alse 表示不可覆蓋此文件。默認是 True。
unicode 可選的。指示以 Unicode 格式還是 ASCII 格式創(chuàng)建文件。True 指示以 Unicode 格式創(chuàng)建文件,F(xiàn)alse 指示以 ASCII 格式創(chuàng)建文件。默認是 False。


針對 File 對象的實例

<%
dim fs,tfile
set fs=Server.CreateObject("Scripting.FileSystemObject")
set tfile=fs.CreateTextFile("c:\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("c:\test")
Set tfile=fo.CreateTextFile("test.txt",false)
tfile.WriteLine("Hello World!")
tfile.Close
set tfile=nothing
set fo=nothing
set fs=nothing
%>


Folder 對象參考手冊 完整的 Folder 對象參考手冊
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號