vbscript写txt文件
如何用vbscript 在指定地址位置的txt文件里写一个“abc”??? 网上找个例子有空行 自己研究研究怎么处理吧data="abc"
set fs =createobject("scripting.filesystemobject")
if (fs.fileexists("c:\2.txt")) then
set f =fs.opentextfile("c:\2.txt",8)
f.write data
f.writeline data
f.close
else
set f=fs.opentextfile("c:\2.txt",2, true)
f.writeblanklines 2
f.write data
f.close
end if
软件测试部落(91443212),1000人群,诚招测试精英和新人,技术交流群,时有HR和猎头的招聘信息,气氛融洽,期待你的加入!
进群请注明51testing上看到的。
页:
[1]