# SplitPath
http://www.autohotkey.com/docs/commands/SplitPath.htm
파일명 또는 URL 에서 이름, 디렉토리, 확장자, 드리아브로 분리합니다.
SplitPath, InputVar [, OutFileName, OutDir, OutExtension, OutNameNoExt, OutDrive]
# 예제
FullFileName = C:\My Documents\Address List.txt ; To fetch only the bare filename from the above: SplitPath, FullFileName, name ; To fetch only its directory: SplitPath, FullFileName,, dir ; To fetch all info: SplitPath, FullFileName, name, dir, ext, name_no_ext, drive ; The above will set the variables as follows: ; name = Address List.txt ; dir = C:\My Documents ; ext = txt ; name_no_ext = Address List ; drive = C:
GUI 를 만들고, drag drop 으로 파일을 넣을 때
해당 경로를 확인하는 코드입니다.
#SingleInstance,Force
Gui, Add, Text, vPathT, Path:
Gui, Add, Edit, vSelFolder ys w300 +ReadOnly ; ys : Start a new column within this section http://www.autohotkey.com/docs/commands/Gui.htm
Gui, Show
return
GuiClose: ; Indicate that the script should exit automatically when the window is closed.
ExitApp
GuiDropFiles:
Loop, parse, A_GuiEvent, `n
{
SplitPath, A_LoopField,, dir
MsgBox, %dir%
}
return
'Programming > AutoHotKey' 카테고리의 다른 글
[AHK] Fn 키를 누르는 수고를 줄이기 위해, AHK 코드를 작성합니다. (0) | 2015.12.21 |
---|---|
[AHk] 구글 검색 (0) | 2015.04.09 |
[AHK] 한영전환 없이 (0) | 2015.04.08 |
[AHK] 두벌식보다 편한 것은...? (1) | 2015.01.08 |
[AHK] AutoHotKey 환경변수 (0) | 2014.10.26 |
댓글