기 타 토탈커맨더 질문요
2023.07.16 10:55
현재 탐색기에서 작업중인 창을 커맨더로 열어서
작업을 할 때 커맨더로 찾아가는 게 불편한데
윈도우 탐색기에서 토탈 커맨더로 바로 열기나
기본 브라우저로 설정 안되나요
댓글 [4]
-
지후빠 2023.07.16 15:12
-
줄리아니 2023.07.16 16:31
Autohotkey를 이용해서 선택 폴더나, 파일에서 토탈 커맨더를 실행하는 방법입니다
run, C:\totalcmd\TOTALCMD64.exe /o /t /R="%ActiveExplorerPath%"
여기에서 토탈 커맨더 경로를 수정해 주세요
탐색기가 실행되어 있는 상태에서 파일이나 폴더를 선택한후 키보드 왼쪽 상단 ` 누르면 토탈 커맨더 오른쪽 패널에 탐색기 경로가 열리게 됩니다
#IfWinActive ahk_class CabinetWClass ; explorer
`::
ActiveExplorerPath := GetActiveExplorerPath()
run, C:\totalcmd\TOTALCMD64.exe /o /t /R="%ActiveExplorerPath%"
return
GetActiveExplorerPath() {
explorerHwnd := WinActive("ahk_class CabinetWClass")
if (explorerHwnd)
{
for window in ComObjCreate("Shell.Application").Windows
{
if (window.hwnd==explorerHwnd)
return window.Document.Folder.Self.Path
}
}
}
return
#IfWinActive
-
귀요미ll요요 2023.07.16 18:44
감사합니다.
두분 다^_^
좋은 하루 되세욤
-
귀요미ll요요 2023.07.16 19:10
Auto Hot Key 기본 사용법
https://m.blog.naver.com/550sn/221810784901
저같은 초보분들 참고 하세요
안녕하세요?
https://windowsforum.kr/lecture/19660634 에 팁으로 올렸습니다. 이것이 맞을까요?