首页 > 编程 > ASP > 正文

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

2024-05-04 11:08:40
字体:
来源:转载
供稿:网友
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 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表