刚才写了一个脚本,用到了文件读写语法,执行脚本时,没有问题,但是,打开写入的文件时,其内容只有一部分。具体代码如下:
Set fso=createobject("scripting.filesystemobject")
If (fso.fileexists("a.txt")) Then
Set file=fso.opentextfile("a.txt",1,true)
set zsc=createobject("scripting.dictionary")
msgbox "该文件存在",,"提示"
else
Set file=fso.createtextfile("a.txt",2,true)
file.write"测试"
file.writeblanklines(2)
file.writeline"sdfsfsdf"
msgbox "该文件不存在",,"提示"
file.writeline"今天天气很好"
msgbox "写入文件成功",,"提示"
End If
do while file.atendofstream<>true
line=line+1
zsc.add line,file.readline