sspku 发表于 2010-9-29 17:14:51

如何通过vbs脚本往文件里写东西?

如题

blueeagle999 发表于 2010-9-29 17:22:17

filesystemobject

TIB 发表于 2010-9-29 20:31:03

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:45

Up正解

17800455 发表于 2010-10-5 13:33:10

3#楼正确,,用文件系统对象.fso
页: [1]
查看完整版本: 如何通过vbs脚本往文件里写东西?