ASP得到檔案的大小類型最後修改時間

來源:互聯網
上載者:User

要得到產生的HTML檔案的最後修改時間,寫了一個函數,有簡單的判斷.

執行個體:

2005-11-10 19:33:44 ASP 檔案 6.83 KB

把下面檔案另存新檔mofei.asp檔案,運行即可,要FSO支援.

<%
Function fsofiledatemofei(sfile)
'通過FSO得到檔案的時間,類型,大小;sfile是檔案名稱
'製作:默飛
'QQ:33224360
'HOME: http://www.8vb.cn
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",改成你需要的檔案,即可判斷,都有注釋,自己修改吧.

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.