用asp实现读取文件的最后一行的代码
时间:2021-11-03 08:57:55|栏目:ASP代码|点击: 次
复制代码 代码如下:
function FSOlastline(filename)
dim fso,f,temparray,tempcnt
set fso = server.CreateObject("scripting.filesystemobject")
if not fso.fileExists(server.mappath(filename)) then exit function
set f = fso.opentextfile(server.mappath(filename),1)
if not f.AtEndofStream then
tempcnt = f.readall
f.close
set f = nothing
temparray = split(tempcnt,chr(13)&chr(10))
FSOlastline = temparray(ubound(temparray))
end if
end function
栏 目:ASP代码
下一篇:一些关于asp 购物车的想法
本文标题:用asp实现读取文件的最后一行的代码
本文地址:http://www.codeinn.net/misctech/182224.html