JavaScript中Close函数是关闭打开的 TextStream 文件。使用方法如下:
object.Close( );
其中object 通常为 TextStream 对象的名字。
下面的例子
说明了JavaScript中
Close函数方法的用法。
var fso;http://www.82676666.com
fso = new ActiveXObject("Scripting.FileSystemObject");
a = fso.CreateTextFile("c:\\testfile.txt", true);
a.WriteLine("This is a test.");
a.Close();
时间: 2024-10-28 15:14:15