AutoHotKey(오토핫키) 설명서 FileGetAttrib

Posted by 발전소장
2014. 8. 14. 00:26 AutoHotKey/Commands

FileGetAttrib

파일의 속성을 취득

FileGetAttrib, OutputVar [, Filename]

Parameters

인수명설명
OutputVar 결과를 격납하는 변수명
Filename 속성을 취득하는 파일명.
상대 패스로 지정했을 경우는,%A_WorkingDir%(을)를 기준으로 한 패스가 된다.
생략시는, 제일 안쪽의File-Loop그리고 대상이 되고 있는 파일이 대상이 된다.

ErrorLevel

성공시는 「0」, 실패시는 「1」.

Remarks

결과는, 이하의 문자를 연결한 것.

R = 독해 전용
A = 어카이브(archive)
S = 시스템
H = 은폐 파일
N = 통상
D = 디렉토리
O = 오프 라인
C = 압축
T = 일시파일

결과가 특정의 속성을 가지고 있을까를 조사하려면 ,IfInString커멘드를 사용하는 등 한다.

Related

FileSetAttrib, FileGetTime, FileSetTime, FileGetSize, FileGetVersion, File-loop

Example(s)

 FileGetAttrib, OutputVar, C:\New Folder 


AutoHotKey(오토핫키) 설명서 FileExist()

Posted by 발전소장
2014. 8. 14. 00:25 AutoHotKey/Commands

FileExist()

파일이 존재할지의 체크와 속성의 취득을 실시할 수 있는 함수.

FileExist(FilePattern)

Parameters

인수명설명
FilePattern조사하고 싶은 파일의 패스를 문자열로 지정한다
구체적인 파일명외, 와일드 카드 문자로서 「*」 「?」(이)가 사용할 수 있다.
상대 패스를 지정했을 경우,A_WorkingDir(으)로부터의 상대 패스로 간주해진다.

Remarks

돌아가 값은, 이하의 문자를 연결한 것.
이것은FileGetAttrib커멘드로 사용되는 것과 동일하다.
R = 독해 전용
A = 어카이브(archive)
S = 시스템
H = 은폐 파일
N = 통상
D = 디렉토리
O = 오프 라인
C = 압축
T = 일시파일

FilePattern에 일치하는 파일이 존재하지 않는 경우는, 길이 제로의 공문자열이 돌려주어진다.
파일이 존재하지만, 어떤 속성도 붙지 않은 경우는 「X」(이)가 된다.

Related

IfExist, FileGetAttrib

Examples

if(FileExist("data.txt")){
	FileRead,DATA,data.txt
}


AutoHotKey(오토핫키) 설명서 FileDelete

Posted by 발전소장
2014. 8. 13. 23:49 AutoHotKey/Commands

FileDelete

파일을 삭제한다

FileDelete, FilePattern 

Parameters

인수명설명
FilePattern 파일명 혹은 와일드 카드.
상대 패스로 지정했을 경우는,%A_WorkingDir%(을)를 기준으로 한 패스가 된다.

ErrorLevel

성공시는 「0」, 실패시는 「1」.

Related

FileRecycle,FileRemoveDir, FileCopy, FileMove

Example(s)

FileDelete, C:\temp files\*.tmp 


AutoHotKey(오토핫키) 설명서 FileCreateShortcut

Posted by 발전소장
2014. 8. 13. 23:48 AutoHotKey/Commands

FileCreateShortcut

쇼트 컷(.lnk)(을)를 작성한다

FileCreateShortcut, Target, LinkFile [, WorkingDir, Args, Description, IconFile, ShortcutKey, IconNumber, RunState]

Parameters

인수명설명
Target 쇼트 컷의 링크 앞.
다만, 인수는 「Args」 쪽으로 지정한다.
LinkFile 작성하는 쇼트 컷의 파일명.
확장자(extension)는 「.lnk」(으)로 하는 것.
벌써 파일이 존재하는 경우는, 덧쓰기된다. 상대 패스로 지정했을 경우는,%A_WorkingDir%(을)를 기준으로 한 패스가 된다.
WorkingDir 쇼트 컷이 실행될 때의 작업 폴더.
Args 링크 앞 가운데, 인수의 부분.
Description 코멘트
IconFile 아이콘을 포함한 파일의 풀 패스.
확장자(extension)가 「.exe」(이)나 「.dll」의 파일을 지정했을 경우, 제일 최초의 아이콘이 사용된다.
ShortcutKey 영숫자나 기호,key list에 있는 키명 등.
표준 키만 사용할 수 있다.
Ctrl+Alt+여기서 지정한 키가 단축 키가 된다.
단축 키가 유효한 것은, 데스크탑이나 스타트 메뉴 이하에 있는 쇼트 컷 파일만.
IconNumber 프로그램 파일중의 몇번째의 아이콘을 쇼트 컷의 아이콘으로 하는지를 설정
RunState 쇼트 컷의 프롭퍼티의 「실행시의 크기」의 부분을 설정.
이하의 어떤 것인가.
어플리케이션에 따라서는, 이 설정은 무시된다.
1
통상의 윈도우(디폴트)
3
최대화
7
최소화

ErrorLevel

성공시는 「0」, 실패시는 「1」.

Remarks

Target에 상대 패스를 지정했을 경우, 자동적으로 시스템 패스로부터 파일이 검색되어 해당하는 파일이 있으면 그 패스로 쇼트 컷이 작성된다.

Related

FileGetShortcut, FileAppend

Example(s)

; The letter "i" in the last parameter makes the shortcut key be Ctrl-Alt-I:
FileCreateShortcut, Notepad.exe, %HOMEDRIVE%%HOMEPATH%\Desktop\My Shortcut.lnk, C:\, "%A_ScriptFullPath%", My Description, C:\My Icon.ico, i


AutoHotKey(오토핫키) 설명서 FileCreateDir

Posted by 발전소장
2014. 8. 13. 23:47 AutoHotKey/Commands

FileCreateDir

폴더를 작성

FileCreateDir, DirName 

Parameters

인수명설명
DirName 폴더명.
상대 패스로 지정했을 경우는,%A_WorkingDir%(을)를 기준으로 한 패스가 된다.

ErrorLevel

성공시는 「0」, 실패시는 「1」.

Remarks

상위 폴더가 존재하지 않는 경우, 그것도 작성된다.

Related

FileRemoveDir

Example(s)

 FileCreateDir, C:\Test1\Folder1\Folder2


AutoHotKey(오토핫키) 설명서 FileCopyDir

Posted by 발전소장
2014. 8. 13. 23:46 AutoHotKey/Commands

FileCopyDir

폴더를 카피한다

FileCopyDir, Source, Dest [, Flag]

Parameters

인수명설명
Source 카피원의 폴더명.
마지막 「\」(은)는 포함하지 않는다.
상대 패스로 지정했을 경우는,%A_WorkingDir%(을)를 기준으로 한 패스가 된다.
Dest 카피처의 폴더명.
마지막 「\」(은)는 포함하지 않는다.
상대 패스로 지정했을 경우는,%A_WorkingDir%(을)를 기준으로 한 패스가 된다.
Flag 「1」(을)를 지정하면, 동명의 파일이 존재했을 때에 덧쓰기를 실시한다.
생략시나 「0」(을)를 지정했을 경우는, 동명의 파일이 존재했을 때는 카피하지 않는다.

ErrorLevel

성공시는 「0」, 실패시는 「1」.

Remarks

이동처의 폴더가 존재하지 않는 경우, 작성된다.

키보드나 마우스의 훅을 이용하고 있는 경우, 처리중에 조작을 받아들일 수 없게 되는 일이 있다.

Related

FileMoveDir, FileCopy, FileMove, FileDelete, file-loops

Example(s)

 FileCopyDir, C:\My Folder, C:\Copy of My Folder


AutoHotKey(오토핫키) 설명서 FileCopy

Posted by 발전소장
2014. 8. 13. 21:28 AutoHotKey/Commands

FileCopy

파일을 카피한다

FileCopy, SourcePattern, DestPattern [, Flag]

Parameters

인수명설명
SourcePattern 파일명 혹은 와일드 카드.
상대 패스로 지정했을 경우는,%A_WorkingDir%(을)를 기준으로 한 패스가 된다.
DestPattern 카피 후의 파일명 혹은 와일드 카드. 상대 패스로 지정했을 경우는,%A_WorkingDir%(을)를 기준으로 한 패스가 된다.
Flag 「1」(을)를 지정하면, 동명의 파일이 존재했을 때에 덧쓰기를 실시한다.
생략시나 「0」(을)를 지정했을 경우는, 동명의 파일이 존재했을 때는 카피하지 않는다.

ErrorLevel

카피에 실패한 파일의 수가 된다

Remarks

카피중에 에러가 발생해도, 처리는 속행된다

파일을 그 파일 자신에게 덧쓰기 카피하려고 했을 경우, 에러로 간주해진다.

서브 폴더를 포함 폴더내의 파일을 모두 카피하려면 ,FileCopyDir(을)를 사용한다.

Related

FileMove, FileCopyDir, FileMoveDir, FileDelete

Example(s)

FileCopy, C:\My Documents\List1.txt, D:\Main Backup\    ; Make a copy but keep the orig. file name.
FileCopy, C:\My File.txt, C:\My File New.txt  ; Copy a file into the same folder by providing a new name.
FileCopy, C:\Folder1\*.txt, D:\New Folder\*.bkp    ; Copy to new location and give new extension.

; The following example copies all files and folders inside a folder to a different folder:
ErrorCount := CopyFilesAndFolders("C:\My Folder\*.*", "D:\Folder to receive all files & folders")
if ErrorCount <> 0
	MsgBox %ErrorCount% files/folders could not be copied.

CopyFilesAndFolders(SourcePattern, DestinationFolder, DoOverwrite = false)
; Copies all files and folders matching SourcePattern into the folder named DestinationFolder and
; returns the number of files/folders that could not be copied.
{
	; First copy all the files (but not the folders):
	FileCopy, %SourcePattern%, %DestinationFolder%, %DoOverwrite%
	ErrorCount := ErrorLevel
	; Now copy all the folders:
	Loop, %SourcePattern%, 2  ; 2 means "retrieve folders only".
	{
		FileCopyDir, %A_LoopFileFullPath%, %DestinationFolder%\%A_LoopFileName%, %DoOverwrite%
		ErrorCount += ErrorLevel
		if ErrorLevel  ; Report each problem folder by name.
			MsgBox Could not copy %A_LoopFileFullPath% into %DestinationFolder%.
	}
	return ErrorCount
}


AutoHotKey(오토핫키) 설명서 FileAppend

Posted by 발전소장
2014. 8. 13. 21:28 AutoHotKey/Commands

FileAppend

텍스트 파일에 추가 기입.파일이 존재하지 않으면 작성된다.

FileAppend [, Text, Filename]

Parameters

인수명설명
Text 추가 기입텍스트. 하늘의 신규 파일을 작성하고 싶은 경우는, 이 인수를 비운다.
Filename 추가 기입처의 파일명.
상대 패스로 지정했을 경우는,%A_WorkingDir%(을)를 기준으로 한 패스가 된다.
선두에 「*」(을)를 붙이면, 바이너리 모드로의 처리가 되어, 개행 코드의 자동변역을 하지 않는다.
파일명 대신에 「*」(을)를 지정하면, 표준 출력에 텍스트를 써낼 수 있다.

ErrorLevel

성공시는 「0」, 실패시는 「1」.

Related

FileRead, file-reading loop, FileReadLine, IniWrite, FileDelete

Example(s)

FileAppend, Another line.`n, C:\My Documents\Test.txt

; The following example uses a continuation section to enhance readability and maintainability:
FileAppend,
(
A line of text.
By default, the hard carriage return (Enter) between the previous line and this one will be written to the file.
	This line is indented with a tab; by default, that tab will also be written to the file.
Variable references such as %Var% are expanded by default.
), C:\My File.txt

; The following example demonstrates how to automate FTP uploading using the operating 
; system's built-in FTP command. This script has been tested on Windows XP and 98se.

FTPCommandFile = %A_ScriptDir%\FTPCommands.txt
FTPLogFile = %A_ScriptDir%\FTPLog.txt
FileDelete %FTPCommandFile%  ; In case previous run was terminated prematurely.

FileAppend,
(
open host.domain.com
username
password
binary
cd htdocs
put %VarContainingNameOfTargetFile%
delete SomeOtherFile.html
rename OldFileName.html NewFileName.html
ls -l
quit
), %FTPCommandFile%

RunWait %comspec% /c ftp.exe -s:"%FTPCommandFile%" >"%FTPLogFile%"
FileDelete %FTPCommandFile%  ; Delete for security reasons.
Run %FTPLogFile%  ; Display the log for review.


AutoHotKey(오토핫키) 설명서 Exp()

Posted by 발전소장
2014. 8. 13. 21:27 AutoHotKey/Commands

Exp()

네피아수e말해 나무승을 돌려주는 함수

Exp(N)

Parameters

인수명설명
N지수를 지정한다

Remarks

N에는 부의 수나 소수도 지정 가능.
N하지만 수치가 아니었던 경우나, 계산 불능인 값이 주어졌을 경우는 길이 제로의 공문자열이 돌아간다.

Related

함수


AutoHotKey(오토핫키) 설명서 ExitApp

Posted by 발전소장
2014. 8. 13. 21:26 AutoHotKey/Commands

ExitApp

스크립트를 종료한다

ExitApp [, ExitCode]

Parameters

인수명설명
ExitCode 정수를 지정.
스크립트를 종료할 때, 프로세스의 종료 코드를 지정한다.
일반적으로, 정상 종료의 경우 「0」(을)를 돌려준다.
디폴트는 「0」

Remarks

스크립트를 종료한다.
다만,OnExit써브루틴이 설정되어 있는 경우, 그 써브루틴이 실행되어OnExit써브루틴내에서ExitApp하지만 실행되지 않는 이상 스크립트는 종료하지 않는다.

스크립트가 상주 상태로 없는 경우,ExitApp하Exit(와)과 완전히 같게 일한다.

Related

Exit, OnExit, #Persistent

Example(s)

#x::ExitApp ; Assign a hotkey to terminate this script.