此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
* M) v. ?. }$ p P& J/ R* O6 G 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
5 T! V7 y; e6 n1 Q 方式一:
( h3 _* o$ A$ M' p1 N( A 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,7 M4 o. K* i* X: X& P
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和& x: R" o8 a: Z6 a
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
0 S N5 d W: _+ l7 d 方式二:7 H3 K- m; H+ T+ x7 Y& A
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:! o/ {$ q. j# c- S( G* a
SetTitleMatchMode RegEx
3 m% I6 e" o" h, N: a4 g+ y( J return
% h( `5 z$ k8 q7 {8 ~/ j! G3 i ; Stuff to do when Windows Explorer is open- [2 c7 F9 P. g. |) r6 R8 ~
;
( f, p5 b4 L; {" c! C2 K2 j #IfWinActive ahk_class ExploreWClass|CabinetWClass. V; S5 ]1 N; K( c3 ^5 w
; open ‘cmd’ in the current directory
) T' Q6 N7 W7 [* t. J& n, [ ;% X. o% U+ `( S' s
#c::
, ^! Y% f3 a7 ~9 ~6 ` n9 Z# b2 K4 y OpenCmdInCurrent()! C8 |/ k5 @$ h, [+ |6 _
return
* S- |+ u/ v+ ]# x A- x: o #IfWinActive; \6 J; X; H8 p0 l/ r2 s
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
L' E& B) C: j! a/ `2 I* Y, K ; Note: expecting to be run when the active window is Explorer.
$ f) l7 x. s& J4 Q ;2 |( N# s! b6 U; }- Y
OpenCmdInCurrent(), h/ a3 d- _! Y% B/ B1 i
{. o3 y s2 D, Q
; This is required to get the full path of the file from the address bar
0 s) w) p. P5 R WinGetText, full_path, A3 d8 A1 q0 k7 R/ R# K( j. r
; Split on newline (`n)
5 K. b( `3 k' k& k StringSplit, word_array, full_path, `n
) g, d" w0 h# c. W3 X' l8 B! v ; Take the first element from the array
- Z9 H0 F) s: ?1 O( j- \ full_path = %word_array1%, i* G6 P; |2 i$ B
; strip to bare address0 h9 V: C4 f0 K% P* y: X: z; {$ `
full_path := RegExReplace(full_path, “地址: “, “”)
4 I7 y: [. f, i5 @6 y ; Just in case – remove all carriage returns (`r)
8 n; \, N, d0 Y' t6 Z9 o& Q( a/ W StringReplace, full_path, full_path, `r, , all
( W2 N' Z3 F p u4 I/ g5 a IfInString full_path, \' ]- D6 c8 ?8 o3 Y2 c7 @
{, x9 o$ {( P# N5 I. E4 q2 ]
Run, cmd /K cd /D “%full_path%”
b) d5 R% m/ _8 K9 ^1 V }
" {# h f5 ?6 N0 q& x& J else
5 O. D' c2 U! k' O3 b { H* T- x. Y/ a7 B5 x
Run, cmd /K cd /D “C:\ ”
) R# Z3 d+ r, Q7 P }
5 J8 |$ J' a6 i% W5 |& b( _# a. A }
. ], `# ]; |/ K 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。/ T3 D4 F/ s. Q7 k0 w* d# q
这段小代码肯能有两个你需要修改的地方* ~1 _9 c0 J" s; R, C
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键+ ]4 A @. o A7 x% j! x, G
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “$ X* b. \( ~! Q" T @& S. @+ y
|