gdutlzl 发表于 2010-7-1 16:39:30

关于vbs中继续写文件的一个问题

LogFile = "E:\fso\2.txt"
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.OpenTextFile(LogFile, 2,true)
objFile.WriteLine "this is the first line"& Now
objFile.Close
我想问一下,如果我写完这一句,下次打开这个文件想接着已有内容继续写怎么办啊?比如"this is the second line"等等,谢谢!上面的代码每次都会把已有内容覆盖掉

skyzhu 发表于 2010-7-1 17:17:07

Set objFile = objFSO.OpenTextFile(LogFile, 8,true)

kettleyang 发表于 2010-7-1 18:04:03

append mode

gdutlzl 发表于 2010-7-2 15:22:40

回复 2# 的帖子

搞定了,谢谢
不过想问一下,为什么在vbs中0和空值是相等的?
Dim A(1)
if 0=A(0) then
msgbox 123
end if
这段代码是可以打印出来123得

skyzhu 发表于 2010-7-2 17:26:03

因为有自动转换,所以碰一起了
空值用IsEmpty判断比较好
页: [1]
查看完整版本: 关于vbs中继续写文件的一个问题