此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。/ Y9 Y6 d2 N& ?0 f0 u5 N1 @
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
. u7 G/ }4 d; ` ?0 V" T: h 方式一:0 Q2 ]) b0 L; K- y- k
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
; w7 t5 X b) K/ n8 G0 N 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
& W' g' W r# L HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。) I7 C- G6 r5 o. x$ j
方式二:
1 ^& X; ~4 h3 } 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:. D- {4 g$ @0 l' |1 @) X. B2 U
SetTitleMatchMode RegEx
! [& l: T5 n0 j+ k" Y' B1 H6 D! | return
. f! I- U2 J0 N/ x) t5 s6 e" u1 a ; Stuff to do when Windows Explorer is open
0 L I2 p! J! P# m/ n7 s6 m+ z9 _0 ? ;3 l% J" }% \, e# l$ N8 }
#IfWinActive ahk_class ExploreWClass|CabinetWClass! f# E; a3 {/ D$ X D
; open ‘cmd’ in the current directory
! q, f; [9 d0 y' W1 M( M/ S ;7 K" @# k( N. y( ~
#c::/ r& z) `. w( R! k# K
OpenCmdInCurrent()
+ A0 I5 l! c, Y( }/ {' r4 K* E4 Q return# h3 C! j/ m0 v# |! t5 Z: x
#IfWinActive
9 `6 v8 Z8 x7 z6 B5 ` ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
2 I9 G% y; M( e# Q5 A ; Note: expecting to be run when the active window is Explorer.$ I% ^& v0 Y+ x+ ^0 r; U% d( K
;
6 o0 H4 a9 C6 z/ d' l# B OpenCmdInCurrent(); j1 k) F; P9 @
{# J, _" S2 L* n: y+ }; o) F f
; This is required to get the full path of the file from the address bar
1 e% S# ^: V- N9 s WinGetText, full_path, A
& D4 L, i/ I. P3 ], S ; Split on newline (`n)
7 I* [0 J" c# U8 A) s) r h" Y4 x StringSplit, word_array, full_path, `n) W7 X" ^1 t1 e; y" V) P
; Take the first element from the array
; B( O& b+ b* f) i full_path = %word_array1%. x0 Z' g I+ y1 b2 r& E& _
; strip to bare address/ G8 O' x' C. |6 k" i2 r
full_path := RegExReplace(full_path, “地址: “, “”)
( _. Q- |) E* J2 w' C% I Q. l ; Just in case – remove all carriage returns (`r), U3 M# y3 q: g S$ Z1 o V* s
StringReplace, full_path, full_path, `r, , all
7 J/ \! K( E& C: t" l IfInString full_path, \# Y4 v" }3 L/ e5 A
{- M& ?: g9 O/ W& i$ f) o4 R
Run, cmd /K cd /D “%full_path%”3 a4 U; a- _3 t8 P
}+ @0 |' \6 k/ U/ c7 [% R7 S
else$ C' f' w8 v* k
{0 S1 }0 x& p8 Q% C8 b
Run, cmd /K cd /D “C:\ ”$ F+ g6 _: m# w y" \, v Z
}3 u9 B( n1 J* t( B# B6 Z
}
0 B: k& i/ w( b( D! x 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
8 R' O m# _& L: O8 J# ^ 这段小代码肯能有两个你需要修改的地方1 J- v$ S" e$ \4 r
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
/ C$ l! ~: s" @5 H& k/ W$ ~: ] 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
' f6 k. e2 e6 C9 g5 N1 n |