ASP FSO如何把数据写入到TXT的第一行而不是最后一行

'在文件结尾插入一行functionFSOappline(filename,Linecontent)dimfso,fsetfso=server.CreateObject(... '在文件结尾插入一行
function FSOappline(filename,Linecontent)
dim fso,f
set fso = server.CreateObject("scripting.filesystemobject")
if not fso.fileExists(server.mappath(filename)) then exit function
set f = fso.opentextfile(server.mappath(filename),8,1)
f.write chr(13)&chr(10)&Linecontent
f.close
set f = nothing
end function
record = getip()
if FSOgetContent("getIp.txt") <> "" then
if instr(FSOgetContent("getIp.txt"),record) = 0 then
FSOappline "getIp.txt",record
end if
else
FSOappline "getIp.txt",record
end if
response.write("IP已记录")
response.End()
%>set f = fso.opentextfile(server.mappath(filename),8,1) 这个是写入最后一行
set f = fso.opentextfile(server.mappath(filename),2,1) 这个写入后之前的数据都会被清除
写入最后一行后在移动到第一行有没有可能
展开
 我来答
网海1书生
科技发烧友

2013-04-03 · 擅长软件设计、WEB应用开发、小程序
网海1书生
采纳数:12311 获赞数:26228

向TA提问 私信TA
展开全部

你可以先把文件的全部内容读出来,然后把你要写入的数据放到读出内容的前面或后面,合为一个大字符串,然后再一次性用覆盖模式写入到原文件中即可。比如:


function FSOappline(filename,Linecontent)
dim fso,f,s
set fso = server.CreateObject("scripting.filesystemobject")
if not fso.fileExists(server.mappath(filename)) then exit function
set f = fso.opentextfile(server.mappath(filename),1,1)
s=f.readall
f.close
set f = fso.opentextfile(server.mappath(filename),2,1)
f.write s & vbcrlf & Linecontent '这个是写到最后一行
'f.write Linecontent & vbcrlf & s '改为这个则是写到第一行
f.close
set f = nothing
set fso = nothing
end function
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式