此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。; \3 x4 l8 V5 S0 \0 ]3 m- ~
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。0 w; p1 S* {: R \8 f6 b
方式一:6 p, z& s6 M! m! x! \8 J7 h
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
( I; w4 V7 p: u( x, A 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和1 J e, H* N6 x) F
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。% @0 |" |1 \) Z, L. L9 J" F5 X2 b
方式二:
) V- H: K3 u5 I# D" }$ a9 {' O 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:4 w' W: K3 |) Y0 H
SetTitleMatchMode RegEx
2 `2 u$ `7 T9 w8 F9 A" Z return
" O9 l. ~/ Y: a5 W( B; E" p: s ; Stuff to do when Windows Explorer is open
2 q( f, X9 p' E! @* G ;
. r3 E1 N# `5 O. b4 L6 K; R# S #IfWinActive ahk_class ExploreWClass|CabinetWClass- n* K6 i( c0 K7 d. Q( }
; open ‘cmd’ in the current directory
0 F& h1 V. e& ?: D ;' R4 R S, s/ n- `
#c::
5 [) U; Z! ~/ E* `$ ^ OpenCmdInCurrent()
' _- J; G9 G7 h' _* N return7 r I1 O! y9 F% r0 K
#IfWinActive+ K6 v% _8 |& d, f5 S ~% V
; Opens the command shell ‘cmd’ in the directory browsed in Explorer./ m3 i0 C g8 R: x
; Note: expecting to be run when the active window is Explorer.
$ u# ?3 q+ U# M6 Q5 i# A4 L. [! d ;0 h# O& c1 k- Y4 g" D
OpenCmdInCurrent()
2 R- Q% y/ v; ~/ Z- Z; U {
$ P* K& y) ?" ~2 @) [: ~8 } ; This is required to get the full path of the file from the address bar
, B. b) l/ T, v3 [) i. u0 y& c3 t WinGetText, full_path, A( y1 }5 z2 I; `/ b
; Split on newline (`n)
. ^8 u3 |9 u$ e! E8 c2 ` StringSplit, word_array, full_path, `n
9 s: `& @7 w0 @9 r2 Y P ; Take the first element from the array& a+ u% c5 K; i
full_path = %word_array1%
' J3 h! p( d7 G/ e$ c! a7 c, P0 _ ; strip to bare address
) |1 o0 r7 A6 a! {5 p: q) N full_path := RegExReplace(full_path, “地址: “, “”)
- ~) q6 J. E0 K4 \ ; Just in case – remove all carriage returns (`r)
. }: R. A! @9 y% \1 o& h StringReplace, full_path, full_path, `r, , all. x7 y* ^+ ]7 E4 O2 Z5 i: b
IfInString full_path, \
7 d! F/ C6 ~" S7 q {
2 P3 `% @3 n/ C% \! t Run, cmd /K cd /D “%full_path%”6 w2 ~5 I& p! W& H) B3 I
}) Z+ P! e0 s) E- p4 B
else
* G% |2 |, p# E1 p3 _& @. h {4 X! C* M9 P( }* g' t
Run, cmd /K cd /D “C:\ ”
/ P4 w" D- a1 a4 y0 H+ n6 P# | }( D5 W: U# E0 k
}
6 Q. g7 L2 O! V8 L 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
+ l- y9 v$ ?( _, B$ ~+ d. b2 ?- v9 P 这段小代码肯能有两个你需要修改的地方
0 V; V5 K" Z3 o( j, Q3 y# C" b 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键/ G6 Q$ y7 V6 g3 x) R: N# d
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “* _& j8 v* q. ` M
|