此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
$ n* l. m, e4 d; i; [) M# @8 { 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
/ k7 v: V- ^+ D1 g, w P 方式一:* X/ o& j! W) {, ]+ z
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
8 ~' T& D, @- I2 |+ ? 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和1 N) C+ l9 o6 p1 P
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。8 r8 l) \% `7 }7 r' g" P
方式二:
8 A( f) f: I6 q8 t( I! m 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
5 j- i0 u) V+ N- U+ \ SetTitleMatchMode RegEx
' u" S1 `" t$ }7 A4 |. L return$ P8 i; n' `! _8 E) p- |8 J
; Stuff to do when Windows Explorer is open
- }% S. v6 ~. G& w6 _ ;& K$ ~- w+ d; X" D s& F
#IfWinActive ahk_class ExploreWClass|CabinetWClass
9 k. T0 h1 G/ R1 [8 g ; open ‘cmd’ in the current directory) V- W& F5 w v
;
4 w+ O* @, ]7 A! v- N #c::6 Y; E+ H. Z! @; H7 m
OpenCmdInCurrent()0 W( _- q: d+ W+ ?9 N
return
( Y, @: `' k2 q4 B #IfWinActive9 M- H9 E0 E$ U9 w) O1 C! v! M
; Opens the command shell ‘cmd’ in the directory browsed in Explorer., o. \7 G9 H- V8 m- g; l4 a( u; r4 u
; Note: expecting to be run when the active window is Explorer.# L( L1 @: ~8 F/ Z1 i
;
+ A% ~, K; x& S' \- T! { OpenCmdInCurrent()# l$ h' o! g) K8 [6 u8 _
{
) V& k3 I. a8 L* j ; This is required to get the full path of the file from the address bar
! u+ m# S/ Z7 N+ z WinGetText, full_path, A4 m+ w0 D* a) R
; Split on newline (`n)
9 _0 }1 x) I$ i; Z- z# j* Q StringSplit, word_array, full_path, `n
* V, q0 l5 m- e4 k ; Take the first element from the array
: z o4 C c4 g6 V. O% @$ g! g full_path = %word_array1%
7 Y2 K( ]) F0 y- e! o; Y0 x ; strip to bare address1 s4 V& M; b) X5 \1 }3 ~
full_path := RegExReplace(full_path, “地址: “, “”)
8 ~% ^5 X' b; I: f+ e! |, k- F ; Just in case – remove all carriage returns (`r)5 E4 D/ R" ~' w
StringReplace, full_path, full_path, `r, , all
, ~( x7 M' l$ O4 h8 H IfInString full_path, \& `7 |- @- P+ E$ Y, D% Y
{ k0 @ Z% w8 ?) z' E
Run, cmd /K cd /D “%full_path%”
' u" h) F; p, s; K3 D/ x }
8 z2 d; ?. x+ @/ w, d2 V- @* w else
( \% V8 s3 l6 S E. t3 Y( h, h) p {6 ^: a% j4 A+ K0 a" C
Run, cmd /K cd /D “C:\ ”9 D1 s* ?. N* z; p8 ]. i- y1 I
}
* U' w5 C. d9 Z- P+ P% o } G! X7 d1 r6 h, h
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。2 q# x/ D$ s/ D K' l6 y' m3 p& T
这段小代码肯能有两个你需要修改的地方* q* @& B4 i4 ]. n
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
2 |0 ]5 u5 w2 i1 L: Z! Q 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
1 H7 |6 z# q* h1 Y |