此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。" \) x: |: P; W
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。. x' A( k$ v2 M7 M/ ], F
方式一:
% E# Y. m6 w1 P: Q) ^/ | 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
0 R- O/ c5 s& N 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和; B% X( D8 |3 Y
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
* W! g% j5 C. N8 j( V9 S2 } 方式二:6 | k3 _5 h/ j; M( x# t/ ~ l
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
% q7 A9 i. U, z; S1 } SetTitleMatchMode RegEx4 r5 w6 l B% p( ]/ ` e2 Q
return+ z4 ?+ l$ X- U. q8 U
; Stuff to do when Windows Explorer is open
9 R, f1 K5 W8 F* i! H; @, E$ i ;! H" E/ y3 [! T0 a$ f4 Y ?8 [" a8 A
#IfWinActive ahk_class ExploreWClass|CabinetWClass3 B, x& ~) _0 n0 _/ @
; open ‘cmd’ in the current directory
T; H/ G2 Y5 J ;1 m# \; a: t& L g% ?
#c::
( L1 y3 {4 {& G" O: W; i OpenCmdInCurrent()
9 `6 b n& x! U0 \2 W return
r. F: M3 V+ v #IfWinActive
, P7 \; t8 f0 B: P; `) I ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
( w' s0 @1 e! J& }: o2 Z ; Note: expecting to be run when the active window is Explorer.0 A9 q+ w3 n3 w& W) x2 R4 y% J
;
$ Y" R5 M2 m2 b2 h4 ^ OpenCmdInCurrent()
4 }; `' s8 K9 O/ \+ U {3 m& O* X( o& y2 x" h
; This is required to get the full path of the file from the address bar6 ~$ f8 s2 x3 T3 T( {2 m
WinGetText, full_path, A1 c# g: u x4 v
; Split on newline (`n)
7 E( G( ~! o6 |. e2 y StringSplit, word_array, full_path, `n, }; V9 s$ E4 o$ {! b
; Take the first element from the array& `2 ]2 R! x1 n7 j& r7 g- J
full_path = %word_array1%3 E$ _: y4 z w4 R% L
; strip to bare address) I2 c0 \) n# p: A# R7 _$ U
full_path := RegExReplace(full_path, “地址: “, “”)+ R0 M6 r% h# j$ C+ t0 j
; Just in case – remove all carriage returns (`r)
! m( _8 R L4 r, q9 E3 w4 H StringReplace, full_path, full_path, `r, , all
1 ]/ F" ~2 ]8 A) Y4 H: |- \3 t IfInString full_path, \9 }* G0 |, d0 D) Y" b
{6 [) ?2 [, h" G( M
Run, cmd /K cd /D “%full_path%”
! _. o; U0 S$ X( T4 N' s7 t }; F# D) k4 U% o! i I2 A8 ?
else8 A# K, W0 B# A9 D
{1 L7 |7 i& o! p2 j
Run, cmd /K cd /D “C:\ ”2 c h- O# p* k( z) ?. G
}
& S1 Q( W/ z( A- T6 O% D }. o( c1 M+ ^5 Z) A' \$ q# M
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。. j+ Y6 l5 ^) U4 s
这段小代码肯能有两个你需要修改的地方
4 v9 A ?5 ^/ S% \- x 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键, P1 ^& d! O' E3 G
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “2 z$ C. B% x2 t ~
|