?
Dokumen ini menggunakan Manual laman web PHP Cina Lepaskan
Close 方法關(guān)閉一個打開的 TextStream 文件。
TextStreamObject.Close
<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("c:\test.txt",true)
f.WriteLine("Hello World!")
f.Close
set f=nothing
set fs=nothing
%>