< Complete File Object Reference
The OpenAsTextStream method opens the specified file and returns a TextStream object to access the file.
Syntax
FileObject.OpenAsTextStream(mode,format)
Parameter | Description |
---|---|
mode | Optional. How to open the file.
|
format | Optional. The format of the file.
|
Example
<%
dim fs,f,ts
set fs=Server.CreateObject("Scripting.FileSystemObject")
Set f=fs.GetFile("c:\test.txt")
Set ts=f.OpenAsTextStream(ForWriting)
ts.Write("Hello World!")
ts.Close
Set ts=f.OpenAsTextStream(ForReading)
Response.Write(ts.ReadAll)
ts.Close
set ts=nothing
set f=nothing
set fs=nothing
%>
Output:
Hello World!
< Complete File Object Reference