<完全なテキストストリームオブジェクトリファレンス
ReadAllメソッドは、全体のテキストストリームのファイルを読み込み、文字列として結果を返します。
Note:この方法は、(それがメモリリソースを浪費)大きなファイルには適していません。
構文
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)
%>
Output:
The text in the file is: Hello World!
<完全なテキストストリームオブジェクトリファレンス