亲宝软件园·资讯

展开

文件 最后一行 用asp实现读取文件的最后一行的代码

人气:0
想了解用asp实现读取文件的最后一行的代码的相关内容吗,在本文为您仔细讲解文件 最后一行的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:文件,最后一行,下面大家一起来学习吧。
复制代码 代码如下:

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

加载全部内容

相关教程
猜你喜欢
用户评论