반응형
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- StringGetPos
- autohotkey
- Blocks
- EnvDiv
- Menu
- SetKeyDelay
- 식의 설명
- SetTitleMatchMode
- if
- SetEnv
- 함수
- IfWinExist
- IfInString
- Var:=식
- DetectHiddenWindows
- EnvSet
- EnvMult
- ControlSend
- IF (식)
- API
- ControlGetText
- 식
- Threads
- MouseClick
- SetMouseDelay
- EnvSub
- if(식)
- EnvAdd
- 배열
- SetControlDelay
Archives
- Today
- Total
ㄴrㅎnㅂrㄹrㄱi
FileSetTime 파일이나 폴더의 타임 스탬프를(일괄)변경 본문
반응형
FileSetTime
파일이나 폴더의 타임 스탬프를(일괄)변경
FileSetTime [, YYYYMMDDHH24MISS, FilePattern, WhichTime, OperateOnFolders?, Recurse?]
Parameters
인수명 | 설명 |
---|---|
YYYYMMDDHH24MISS | 일자 시각을 YYYYMMDDHH24MISS의 형식에서 지정. |
FilePattern | 대상 파일명. 와일드 카드 사용가능. 상대 패스로 지정했을 경우는, %A_WorkingDir%(을)를 기준으로 한 패스가 된다. 생략시는, 제일 안쪽의 File-Loop그리고 대상이 되고 있는 파일이 대상이 된다. |
WhichTime | 어느 타임 스탬프를 변경할까.
|
OperateOnFolders? | 와일드 카드 사용시의 폴더의 취급
|
Recurse? | 「1」(을)를 지정하면, 서브 폴더를 더듬어FilePattern에 일치하는 파일을 대상으로 한다. 생략시나 「0」(을)를 지정했을 경우는, 서브 폴더 이하는 포함하지 않는다. |
ErrorLevel
변경에 실패한 파일의 수가 된다
Related
FileGetTime, FileGetAttrib, FileSetAttrib, FileGetSize, FileGetVersion, File-loop, EnvAdd, EnvSub
Example(s)
; Set the modification time to the current time for all matching files: FileSetTime, , C:\temp\*.txt
; Set the modification date (time will be midnight): FileSetTime, 20040122, C:\My Documents\test.doc
; Set the creation date. The time will be set to 4:55pm: FileSetTime, 200401221655, C:\My Documents\test.doc, C
; Change the mod-date of all files that match a pattern. ; Any matching folders will also be changed due to the last param: FileSetTime, 20040122165500, C:\Temp\*.*, M, 1
반응형
'AUTOHOTKEY > 레퍼런스' 카테고리의 다른 글
FormatTime YYYYMMDDHH24MISS형식의 타임 스탬프를 지정의 서식의 일자 시각 문자열로 변환한다 (0) | 2007.11.05 |
---|---|
Floor() 주어진 수치보다 작은 최대의 정수를 돌려주는 함수 (0) | 2007.11.05 |
FileSetAttrib 하나 이상의 파일의 속성을 변경 (0) | 2007.11.05 |
FileSelectFolder 폴더 선택 다이얼로그를 표시 (0) | 2007.11.05 |
FileSelectFile 파일 선택 다이얼로그를 표시 (0) | 2007.11.05 |
Comments