此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。: p% d9 Y) L$ Y' h
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
6 a6 z) f. W2 E7 j 方式一:
) s/ h! t5 Q! J2 |) H7 x8 ~ 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,. V# [2 F& G+ Z, c) M: h. b
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
# R& N) W7 j1 Y8 q6 S1 u- {# E HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。: D# u$ p1 f& ]- a
方式二:
! t( E. s/ Y0 }6 H1 _ 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:9 d% L( e' a( [ p
SetTitleMatchMode RegEx
& Q/ X! Z d t6 [7 g return
( t; Y+ a9 g# W4 A' v; r5 _6 ?6 i/ H ; Stuff to do when Windows Explorer is open
6 ~# A7 f; [6 f$ {7 @$ L( G ;
6 p& ~. m8 _ A" l4 I( i' W: p8 D/ j #IfWinActive ahk_class ExploreWClass|CabinetWClass
/ @: S( y* P. C- F9 X& \$ n- r ; open ‘cmd’ in the current directory
) `8 o" j6 U% H9 |4 O# s ;
0 F1 ?6 ^' u; K #c::% `' {, X- Z4 [; ^1 y- o( W
OpenCmdInCurrent()* x/ v$ }% ?! f [- z& H# s
return# [% H9 U1 v# \; M7 H( \. d5 |
#IfWinActive
# W* S. V1 Y$ D ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.+ T* H; w8 Q. S2 \# A/ r) m
; Note: expecting to be run when the active window is Explorer.
* ~4 n" e& E2 `' G7 e+ p0 M ;
# i- F5 t% s' e+ D7 V OpenCmdInCurrent()
8 d, f- B$ ~+ f+ Z7 g {2 ^, }3 e+ r! Z) o
; This is required to get the full path of the file from the address bar. J6 m" l5 z' t) y2 U
WinGetText, full_path, A
( K3 z* I: a: A/ b1 C( L9 X( t: ], t ; Split on newline (`n)
+ i' U. r, n" ~- u StringSplit, word_array, full_path, `n
4 Q5 i1 ~6 w/ P3 C: t( z r& L ; Take the first element from the array
7 R0 o, r' T$ `- U* P, i& L1 q full_path = %word_array1%
' \* W* M! p) T3 R ; strip to bare address# ?2 l3 d. [4 o
full_path := RegExReplace(full_path, “地址: “, “”)+ P: M0 F! J) k0 i4 J h$ P$ V
; Just in case – remove all carriage returns (`r)8 L) m7 ?, P" ~( _% \
StringReplace, full_path, full_path, `r, , all
$ [) m- L3 n# O, a IfInString full_path, \
+ }+ E! y" e& l# i% b2 Q1 v {3 @$ a/ L1 p4 g; K2 _% H+ e- q& R" n- p
Run, cmd /K cd /D “%full_path%”( }2 Q K! [- }4 C; M$ V7 m. y
}+ S. T: P# m5 |
else
9 Y% r8 k' t9 G* b% e$ ~/ t {
, I8 R/ n7 h' R- S Run, cmd /K cd /D “C:\ ”
) m3 ?, s% _* [5 u }
# K: M# z$ L5 \ D! U. \ @* W }5 p" ~2 L# ^& P: K
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
6 e2 B2 @0 V' C. G. M7 ]! k! m7 t" c+ G 这段小代码肯能有两个你需要修改的地方; ?' X% L8 n: _3 l0 T3 k' _+ t: O" y
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
3 u( b/ @, i) G5 ^ 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “: e: Z2 R9 i9 M/ Y! C
|