欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

如何获知文件最后的修改日期和时间?

程序员文章站 2022-10-28 12:06:22
<%dim objcmfudim strmodifiedset objcmfu = server.crea...

<%
dim objcmfu
dim strmodified

set objcmfu = server.createobject("cm_fileutils.getproperty")
'
创建对象并赋给变量,并且getproperty类是当前唯一可用的.

strmodified = objcmfu.lastmodified
'
检索并返回包含最后修改日期和时间(lastmodified function )值.当然了,还要考虑到出错的可能.
 
set objcmfu = nothing
'
清空.
%>

<% if strmodified = "error!" then %>
对不起,出错了!
<% else %>
这个文件最后修改于:

<%= strmodified %>

<%= formatdatetime(cdate(strmodified),1) %>

<%= formatdatetime(cdate(strmodified),3) %>

 

<% end if %>

 

[1]