此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
* T/ q: d# H. v m2 ?8 a- u+ x) ~& {$ c 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
3 E) h! z* t6 @0 U0 N4 p, f 方式一:
4 G. l% ?9 n" l. @$ t V 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
$ q+ C% Y6 P8 z$ ? 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和; a6 M* b& }. A- h6 {
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。. h3 Z! g, o0 a @% U# L
方式二:
8 J& G+ g0 N, I! R% V 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
9 h$ E! Q6 f6 @ SetTitleMatchMode RegEx$ T! \) i- p' m+ @2 D1 s: e
return
9 m, V8 B- ~1 z% y: ^) J ; Stuff to do when Windows Explorer is open' x8 \% i* c; E: n3 j' p
;
& {; L# l1 R: r4 W5 w2 V" N #IfWinActive ahk_class ExploreWClass|CabinetWClass
* `; ~; n9 e' A1 g! B4 P; [ ; open ‘cmd’ in the current directory& J) x. V: T9 b( J/ c) D' ^
;
# o! |7 Z4 ?" D- F- z- U6 X' A6 |( s #c::# M& s! b1 E4 \1 V2 \
OpenCmdInCurrent()
# l! @5 i1 p% E# F- b- { return
2 e1 a$ H* `3 @0 W' J #IfWinActive
$ r0 X# A% i# p0 S4 U ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
( [# \& ^3 F q: g9 m1 J ; Note: expecting to be run when the active window is Explorer., p+ n* j3 T' a" j) ^% Y
;
' V- A: U. n5 i: @) s OpenCmdInCurrent()9 g& W9 n$ |2 o
{
# J- Y, A8 }2 U$ s0 ]5 M ; This is required to get the full path of the file from the address bar
. k) |; q* l, E/ z4 Q/ B WinGetText, full_path, A
( }4 I& Z o U9 f. k ; Split on newline (`n)! i/ c; \4 I# c/ u6 ^6 i
StringSplit, word_array, full_path, `n j+ B$ R/ J) b R1 v4 d
; Take the first element from the array& U" c1 x- S( U8 e6 E
full_path = %word_array1%9 T1 z+ y3 Y* ]( z+ B0 T& [& W) a
; strip to bare address( ~9 p& [; g Y/ B( a) c9 C I' c: O$ Y
full_path := RegExReplace(full_path, “地址: “, “”)
# B1 k* F3 N/ p1 j% R) X ; Just in case – remove all carriage returns (`r)
% _* d7 S& U$ ~- {4 ]) ~. h M, [ StringReplace, full_path, full_path, `r, , all
6 X* t& p* U' F0 ^: \ IfInString full_path, \
4 p7 R. U. O/ ^2 I5 C& T% r9 A7 K {
' h8 U. L# d3 E Run, cmd /K cd /D “%full_path%”
- J$ F. W6 p' t7 m! O+ _) q }
, d* E! o$ G+ b2 E2 V" \ else# E( [/ Z1 m& a; t* r0 M9 m. b4 v* r
{
+ g- U. @. ~! g: S- S4 {+ p3 ? Run, cmd /K cd /D “C:\ ”
/ i( R6 S/ ~( c/ t5 l2 ] } ]; i8 N) V; l5 p# P
}
7 t1 g8 g, B8 ^! ^3 h, r 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。. M, N* f1 {4 Q' ]/ o
这段小代码肯能有两个你需要修改的地方
# f- }; y- F+ L% \ 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键0 d# t @+ l) }# |3 a: _3 _" C
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
: p( `! e7 D4 G3 d, K0 Q: h: @. d |