此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
5 d" L/ m/ X4 @$ ?2 @2 I4 ? 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。8 \) i+ u; \& N3 E1 m
方式一:# S& ~: l' |+ T R+ ^" x. X9 `
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
5 B+ V( j. {( v8 V: n# t 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
+ q. N- A& e- C$ } HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。( `% V4 s6 T$ ^2 U
方式二:
: h3 N- F; v0 Q+ B- H. n G 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
9 c$ B" u6 E" \; _& u" I9 K SetTitleMatchMode RegEx& _5 h" I8 ^- |( Q
return
7 C$ O+ I. R6 U, c ; Stuff to do when Windows Explorer is open
& u/ c/ [8 `5 c9 T# n ;
) V3 s) D) c1 ], C9 v #IfWinActive ahk_class ExploreWClass|CabinetWClass. [. V5 t) d& Q# {0 t" ]* H6 {
; open ‘cmd’ in the current directory
% T2 ~- a1 F/ N ;
$ s7 H6 q* s$ r #c::
; a5 V Y; I% I! q+ N* g5 c6 i OpenCmdInCurrent()2 e- w- N- Z9 E* I* ]
return
: S) Y" _. ]# c2 p! G #IfWinActive
8 M0 n) @' P# ?& V) x ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
; A% R$ u& ~+ o) n8 N% _- W) E ; Note: expecting to be run when the active window is Explorer.( G# m6 O, H6 B( C" Y. M0 ~% n
;
- S) o: _& b- c OpenCmdInCurrent()1 B" P% E* a+ w( ^
{
+ i5 h, x, x: V2 u ; This is required to get the full path of the file from the address bar- l: o- _) t, J2 K2 P2 p
WinGetText, full_path, A
5 |7 \7 ?* l9 z ; Split on newline (`n)9 }6 d) Z( W& F
StringSplit, word_array, full_path, `n
6 p7 a5 e9 v8 Z8 S, D- g5 N ; Take the first element from the array
: W7 ]( _; ?9 J& G% m full_path = %word_array1%
/ o1 F' J$ R3 W. I9 ~ ; strip to bare address, D8 i( z7 T# Z% D7 Z7 K
full_path := RegExReplace(full_path, “地址: “, “”)! [6 p! Z Q- n
; Just in case – remove all carriage returns (`r)
0 Y! O) p6 {# Z2 ~9 i StringReplace, full_path, full_path, `r, , all
+ m9 ?/ L0 x+ K IfInString full_path, \
% G" C! t* ]" t) F+ v {
0 V5 |: u- e2 s" }$ ^ Run, cmd /K cd /D “%full_path%”3 X9 F1 [. F' H7 E
}
8 Q5 R2 j1 _; i+ J3 m+ q# W7 e else$ t% R6 l& K5 R2 B
{! B$ o7 N% ^2 w- f o. y& p+ F# U
Run, cmd /K cd /D “C:\ ”5 a# j1 z/ W* W0 ~% k4 [8 z
}1 C$ g5 _1 Q: a* m: Z6 c
}
) X' {+ k- n7 t; p4 m 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
- s+ |1 ?. V2 o 这段小代码肯能有两个你需要修改的地方0 r( x w" m) I/ b4 U2 K
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
( v5 Y: x1 h/ b7 c& @8 @ 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
* [( @; U. G* n, n) q |