此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。6 O' s# r9 p! @: ~
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。' E* A2 L5 t) [# G8 S1 B7 }
方式一:. C% x/ t, [3 a2 P& @8 F: n& n
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,; f) X. w3 s* Y
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和 ]* M" a: t1 Z3 y
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
" v* |7 B# Q9 [" c2 y4 F% ~ 方式二:5 c; k3 |- {- J# ~! h8 w7 q4 N
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:' O0 d8 T# A2 V! _5 N
SetTitleMatchMode RegEx0 H4 r3 _4 f( t8 h; D) G& W
return: d- [6 g1 j8 Z* R
; Stuff to do when Windows Explorer is open
$ s. Y5 D* N% V/ `- C ;
# S/ R* M( z: s8 b3 { #IfWinActive ahk_class ExploreWClass|CabinetWClass& V2 }6 _5 S- H. W" v
; open ‘cmd’ in the current directory
: m4 d1 y( L& I+ B ;" x4 H. ]; H; G
#c::
9 T# E, y& N3 H9 I$ \ OpenCmdInCurrent()
6 q# D: M0 O4 @9 _6 d* P return" C5 O2 Q7 y7 d$ n4 L5 w. y
#IfWinActive
* b. _7 O6 U$ t( P$ F/ H ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
$ T8 f4 i5 a0 N0 w2 p& _3 r ; Note: expecting to be run when the active window is Explorer.; k j' g: l6 ], }# ]$ g
;# T4 K. V' W( i6 o
OpenCmdInCurrent()
% |/ e {. G* N5 r7 R- f9 Z {
- G) R9 M$ h& S3 n0 r! U ; This is required to get the full path of the file from the address bar! z% J+ Z( C+ V% \! o4 S! ~
WinGetText, full_path, A
9 s" Y( E$ a- V5 B ; Split on newline (`n)
Q# @3 R6 K, B/ e StringSplit, word_array, full_path, `n
; u. `+ W' e6 j! x ; Take the first element from the array) G& ]. n9 i6 v
full_path = %word_array1%! R v- z8 p- E' A
; strip to bare address& j7 f8 \ o0 D! u* |
full_path := RegExReplace(full_path, “地址: “, “”)
% q$ O, S& f2 k0 z ; Just in case – remove all carriage returns (`r)% |& S; C8 [* h
StringReplace, full_path, full_path, `r, , all
& x! g( T7 d6 L+ S IfInString full_path, \4 v7 Y" H: q. f/ q+ p
{
! ^! K5 t9 ]5 l Run, cmd /K cd /D “%full_path%”3 m6 Q$ b$ i3 \5 S
}0 F. t: B8 P, B1 \+ E Z: I
else
& J' i) r9 J& g$ ~' @) }+ U2 T {
+ L9 ^# Z" _* p+ v$ Q Run, cmd /K cd /D “C:\ ”
. a$ ?- R4 X5 k, h9 e }! \1 y, |) g/ ^" G
}
- B. h: k+ s3 u. c4 ]6 G$ O, P 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。+ [5 K9 U9 n N! B) g
这段小代码肯能有两个你需要修改的地方( S4 T: ]5 l" R U/ |: ^/ y4 x
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键+ a4 V; x+ D8 T. p$ D
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “) Y+ _3 D; V% Q" Y4 O
|