(PWS4 IIS4 IIS5)
AtEndOfStreame — TextStream ファイル内でファイルポインタがファイルの最後に置かれている場合に真 (true) を返します。それ以外の場合は、偽 (false) を返します。値の取得のみ可能です。
構文
object.AtEndOfStreame
パラメータ
- object
- TextStream オブジェクトを指定します。
戻り値
ファイルポインタがファイルの最後に置かれている場合に TRUE を、それ以外の場合に FALSE を返します。
説明
AtEndOfStream プロパティが使用できるのは、読み取りを行うように開いた TextStream ファイルに対してだけです。それ以外の場合は、エラーが発生します。
例
JScript
1 2 3 4 5 6 7 8 9 10 11 | function GetALine(filespec) { var fso, f, s, ForReading; ForReading = 1, s = ""; fso = new ActiveXObject("Scripting.FileSystemObject"); f = fso.OpenTextFile(filespec, ForReading, false); while (!f.AtEndOfStream) s += f.ReadLine( ); f.Close( ); return(s); } |
VBScript
1 2 3 4 5 6 7 8 9 10 11 | Function ReadEntireFile(filespec) Const ForReading = 1 Dim fso, theFile, retstring Set fso = CreateObject("Scripting.FileSystemObject") Set theFile = fso.OpenTextFile(filespec, ForReading, False) Do While theFile.AtEndOfStream <> True retstring = theFile.ReadLine Loop theFile.Close ReadEntireFile = retstring End Function |