asp 隱藏並修改檔案的最後修改時間

2022-09-21 15:36:10 字數 956 閱讀 5590

原始碼:

複製** **如下:

'隱藏並修改檔案的最後修改時間的aspshell

'原理:通過fso可以修改檔案的屬性,比如設定為唯讀,隱程式設計客棧藏,系統等等;fso中的attributes屬性修改檔案屬性,1唯讀,2隱藏,4系統檔案

' 通過shell.application可以給檔案重新設定乙個最後修改時間

'2009/02/24 write by skyfire

response.write ""

'獲取提交的引數

set path=request.form("path")

set filename=request.form("filename")

set newtime=request.form("time")

if( (len(path)>0)and(len(filenawww.cppcns.comme)>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.names"."))

set app_file=app_path.parsename(filename)

app_file.modifydate=newtime

end if

%>

本文標題: asp 隱藏並修改檔案的最後修改時間

本文位址:

ASP 修改檔案的屬性 把檔案的由可讀修改為唯讀

normal 0 普通檔案。沒有設定任何屬性。readonly 1 唯讀檔案。可讀寫。hidden 2 隱藏檔案。可讀寫。system 4 系統檔案。可讀寫。volume 8 磁碟驅動器卷標。唯讀。directory 16 資料夾或目錄。唯讀。archive 32 上次備份後已更改的檔案。可讀寫。a...

git add後又修改,如何撤銷最後的修改?

比如readme檔案,修改其中內容,執行git status git status on branch master your branch is up to date with origin master changes not staged for commit use git add to u...

FTPClient 獲取檔案的秒級最後修改時間

二次開發datax ftpreader 需要精確獲取ftp端檔案的最後修改時間,開始使用的是 ftpfile ftpfiles ftpclient.listfiles new string filename.getbytes ftp.default control encoding if ftpfi...