vb/asp/vbscript打开文件追加写入
程序员文章站
2024-02-06 13:10:34
追加打开文件,在文件末尾追加,不像.net/c/等,有a参数来再文件末尾写入。
set fso=createobject("scripting.filesystemobj...
追加打开文件,在文件末尾追加,不像.net/c/等,有a参数来再文件末尾写入。
<?
set fso=createobject("scripting.filesystemobject")
set f=fso.opentextfile("c: est.txt",8,-1,0)
f.write str&vbcrlf&strold
f.close
?>