此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
5 C6 @7 v7 E( f; l% n 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
; H! s, Y+ z. i: y) F, F( ] 方式一: u" _& \! O! b5 ^( H* F9 U
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,# {" f0 u+ I$ V6 L9 i
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
5 K' e# @ K+ K4 r( q HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
% ?7 }' Z5 ~% M h U: W& b6 A 方式二:
# h' z- G9 _9 f3 y: P5 G 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:; V$ F+ Q6 l) n4 z$ d5 Y% w+ i; \: s/ H
SetTitleMatchMode RegEx: H- Y) Q& M+ ?
return
* \2 r! d! E% ^$ y& t, M+ d# F ; Stuff to do when Windows Explorer is open1 Q6 \- u* ?5 {4 b+ V
;
6 n) M$ \( ^- R# D( @, i: F #IfWinActive ahk_class ExploreWClass|CabinetWClass
* W$ ~6 o. N. ^& A( v8 w8 T ; open ‘cmd’ in the current directory
1 C" }; ^8 f3 S$ G& L ;
+ w' y! _: Z2 T, i% W6 X #c::
4 x! Z6 T. {* r" s# t' a OpenCmdInCurrent()
3 F8 M8 @2 P9 j f4 t" Q1 t return
3 n2 @/ l4 v/ A. s% |9 q' o$ L8 E) e& q #IfWinActive
3 q( D2 D( }; n ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
( N* K+ x$ l. p4 m H, N! N9 i1 J& m ; Note: expecting to be run when the active window is Explorer.
# _: W& j; K9 y) g! G: Z ;
& O& p* }: X) x' a OpenCmdInCurrent()9 @" l* a2 n) N( N) l
{
& z9 J! F9 t4 ?8 e! |6 e6 E ; This is required to get the full path of the file from the address bar+ J& I g0 ~( J, e9 Q. P; T1 J
WinGetText, full_path, A& f3 ~7 k! a/ h+ B! N7 k( j7 i
; Split on newline (`n)% i1 ~. |9 W3 I& ]6 }' R
StringSplit, word_array, full_path, `n
3 C- S' |0 L# D- \# W ; Take the first element from the array0 _( i+ J) I* e* b
full_path = %word_array1%
1 ^2 y* H! ~% h ; strip to bare address
$ |- \% L9 t+ P8 }2 S# V$ A full_path := RegExReplace(full_path, “地址: “, “”)
: {" }6 A6 C% ]; @+ z3 \ ; Just in case – remove all carriage returns (`r)
& X; _* ?: M6 [# [ StringReplace, full_path, full_path, `r, , all4 K R7 y) R, L' |! B
IfInString full_path, \
# y( t) N, L5 e& J7 R; z; @9 f. R! g {
/ g& e1 h1 G4 ^/ i Run, cmd /K cd /D “%full_path%”( z- ]% \1 d! K. o
}
; e0 N3 {: h F else
1 f) M! |/ V; A2 \ q3 g2 E- n, M {+ D. I9 u' _7 \
Run, cmd /K cd /D “C:\ ”$ e6 V- K) g% n5 v! r
}; K$ S6 O2 j% R$ L# O6 T0 D
}
4 V4 A7 k3 d/ u p 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。6 o# p( ~( a& [# D
这段小代码肯能有两个你需要修改的地方
0 d0 ~: j7 |* ] 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
/ n9 N9 F; u, ]3 g. h6 N 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
4 ^. Y, x7 c- U v |