Close Method

Microsoft Office JScript

Microsoft® JScript® Close Method  Scripting Run-Time Reference 
Version 2 

See Also                  Applies To


Description
Closes an open TextStream file.

Syntax
object.Close( );

The object is always the name of a TextStream object.

Remarks
The following example illustrates use of the Close method:

var fso;
fso = new ActiveXObject("Scripting.FileSystemObject");
a = fso.CreateTextFile("c:\\testfile.txt", true);
a.WriteLine("This is a test.");
a.Close();