51Testing软件测试论坛

标题: 如何通过vbs脚本往文件里写东西? [打印本页]

作者: sspku    时间: 2010-9-29 17:14
标题: 如何通过vbs脚本往文件里写东西?
如题
作者: blueeagle999    时间: 2010-9-29 17:22
filesystemobject
作者: TIB    时间: 2010-9-29 20:31
Const ForReading = 1, ForWriting = 2, ForAppending = 8
   Dim fso, f
   Set fso = CreateObject("Scripting.FileSystemObject")
   Set f = fso.OpenTextFile("c:\testfile.txt", ForWriting, True)
   f.Write "Hello world!"
   f.Close
作者: Jun_Li    时间: 2010-9-30 08:41
Up  正解
作者: 17800455    时间: 2010-10-5 13:33
3#楼正确,,用文件系统对象.fso




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2