用asp实现读取文件的最后一行的代码
用asp实现读取文件的最后一行的代码
发布时间:2016-12-29 来源:查字典编辑
摘要:复制代码代码如下:functionFSOlastline(filename)dimfso,f,temparray,tempcntsetfso...

复制代码 代码如下:

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教程学习
编程开发子分类