ASP ReadAll 方法

ReadAll 方法可讀取整個 TextStream 檔,並以字串返回結果。
注意:此方法不適合大型檔(會浪費記憶體資源)。
語法
TextStreamObject.ReadAll
實例
<%
dim fs,f,t,x
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("c:\test.txt"")
f.write("Hello World!")
f.close
set t=fs.OpenTextFile("c:\test.txt"",1,false)
x=t.ReadAll
t.close
Response.Write("The text in the file is: " & x)
%>
輸出:
The text in the file is: Hello World!
dim fs,f,t,x
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("c:\test.txt"")
f.write("Hello World!")
f.close
set t=fs.OpenTextFile("c:\test.txt"",1,false)
x=t.ReadAll
t.close
Response.Write("The text in the file is: " & x)
%>
輸出:
The text in the file is: Hello World!
