VBS教程:方法-Close 方法
时间:2021-07-07 08:50:47|栏目:VBS|点击: 次
Close 方法
关闭打开的 TextStream 文件。
object.Close
object 应为 TextStream 对象的名称。
说明
下面例子举例说明如何使用 Close 方法关闭打开的 TextStream 文件:
Sub CreateAFile Dim fso, MyFile Set fso = CreateObject("Scripting.FileSystemObject") Set MyFile = fso.CreateTextFile("c:\testfile.txt", True) MyFile.WriteLine("
这是一个测试。")
MyFile.Close
End Sub
上一篇:拖拽文件显示文件路径的vbs代码
栏 目:VBS
下一篇:VBS加密与VBE解密实现方法
本文标题:VBS教程:方法-Close 方法
本文地址:http://www.codeinn.net/misctech/153677.html