(PWS4 IIS4 IIS5)
Write — ファイル書き込み処理
構文
object.Write ( string )
パラメータ
- object
- TextStream オブジェクトを指定します。
- string
- 書き込む文字列を指定します。
戻り値
値を返しません。
説明
指定した文字列を ファイルに書き込みます。
連続して文字列を書き込んだ場合、文字列間にスペースや区切り文字は挿入されず、続けて書き込まれます。
文字列の最後で改行する必要がある場合は、WriteLine メソッドを使用するかまたは文字列の最後に改行文字を入れてください。
例
JScript
1 2 3 4 5 6 7 8 9 10 11 12 | function WriteDemo() { var fso, f, r var ForReading = 1, ForWriting = 2; fso = new ActiveXObject("Scripting.FileSystemObject") f = fso.OpenTextFile("c:\\testfile.txt", ForWriting, true) f.Write("Hello world!"); f.Close(); f = fso.OpenTextFile("c:\\testfile.txt", ForReading); r = f.ReadLine(); return(r); } |
VBScript
1 2 3 4 5 6 7 8 9 | Function WriteToFile Const ForReading = 1, ForWriting = 2 Dim fso, f Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.OpenTextFile("c:\testfile.txt", ForWriting, True) f.Write "Hello world!" Set f = fso.OpenTextFile("c:\testfile.txt", ForReading) WriteToFile = f.ReadLine End Function |