ASP得到文件的大小类型最后修改时间
实例:
把下面文件另存为mofei.asp文件,运行即可,要fso支持.
<%
function fsofiledatemofei(sfile)
'通过fso得到文件的时间,类型,大小;sfile是文件名
'制作:默飞
'qq:33224360
'home:
sfilere=""
set fso = server.createobject("scripting.filesystemobject")
if sfile="" or isnull(sfile) then sfile=request.servervariables("script_name")
if not fso.fileexists(server.mappath(sfile)) then sfile=request.servervariables("script_name")
sfile=server.mappath(sfile)
set fsofile=fso.getfile(sfile)
sfilere=sfilere&fsofile.datelastmodified '文件时间
sfilere=sfilere&chr(9)&"<font color=green>"&fsofile.type&"</font>" '类型
sfilere=sfilere&chr(9)&round(fsofile.size*1000/1024/1000,2)&" kb" '大小
set fso=nothing
fsofiledatemofei=sfilere
end function
response.write fsofiledatemofei("index.asp")
%>
很明显,修改"index.asp",改成你需要的文件,即可判断,都有注释,自己修改吧.
上一篇: 解决JSP保存到数据库丢失格式的方法
下一篇: 用ASP实现远程批量文件改名