此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
) T7 o- k# B6 }# z3 A# c Y 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。! i& Z: u$ g8 U6 ^
方式一:
) N6 Y; E9 l- A/ J" [9 r7 O 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表," L$ @ E; c# ?( l
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和# j8 s- _+ H% T6 \5 u s, e2 @: e
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。# ]! t% ~% N1 y
方式二:( F! K/ n9 @1 ^ ~7 I- G% h
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
: [% n. I- [; }2 g+ u% X' M4 q# l% D1 J SetTitleMatchMode RegEx
8 K2 W+ P+ G9 e% y G# j; O return
. N( P/ d2 w( l ; Stuff to do when Windows Explorer is open
G6 E4 @/ \( Y3 X, Q ;; I; N8 O2 g1 h
#IfWinActive ahk_class ExploreWClass|CabinetWClass
1 u2 s& {. c) U: [8 s+ q: { ; open ‘cmd’ in the current directory9 t: ^( o# w V7 i8 u
;
. v5 x$ X+ L. O! Y+ E5 o #c::- D2 } M) {, `2 a$ T" g
OpenCmdInCurrent()2 U* d# }" x& ~% v+ a( F
return3 ]% m# ~. ?) C
#IfWinActive
3 Z( X6 E5 _. R ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.% B K% K9 V3 a; A9 U; P$ ]" c) s: v
; Note: expecting to be run when the active window is Explorer.; r: `' [/ c8 b
;7 Q- z; E# l* k. {
OpenCmdInCurrent()
. ^% e3 e5 X9 J' V {
. z% Q6 d9 y8 q5 G1 n ; This is required to get the full path of the file from the address bar
! s' g1 l. _" }9 q3 v( C$ f* W; o. k WinGetText, full_path, A
4 e- `2 ?& ~9 ^! M* N ; Split on newline (`n)
. u: z- A& k2 C3 [# p: v R StringSplit, word_array, full_path, `n7 ]; j; J. Q: J) M* d, ? v6 X
; Take the first element from the array
: `7 r% B, c0 u3 X full_path = %word_array1%! `6 I" d' c; y7 [
; strip to bare address
" c/ Z9 L i; A$ Y7 v full_path := RegExReplace(full_path, “地址: “, “”)
! x, y' Q& N( a7 B7 w0 x* v ; Just in case – remove all carriage returns (`r)
. J( a* L* p2 ^1 s3 f9 k StringReplace, full_path, full_path, `r, , all) V2 R4 T+ a6 I* m1 w" v# p$ C
IfInString full_path, \' F0 V* `/ J+ {" r2 q+ A
{3 W2 I/ m. T. r
Run, cmd /K cd /D “%full_path%”
# d7 }. @* ~+ Z2 ^ }$ t9 w3 ^& c, n
else
& j+ c7 ]1 w* e8 P8 ` {
$ l V- e4 a" O) j Run, cmd /K cd /D “C:\ ”
6 G/ k5 e8 F R8 v/ j }/ ~. X( j! s+ f; z8 C. t
}! g: f& w% D1 n+ u
把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
: e2 S# m1 f ~6 Q 这段小代码肯能有两个你需要修改的地方
- A) T D8 H$ G' p: W 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键! i4 ~! I7 P1 `1 v
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “4 b4 R( W: a$ }! i* e& E$ t
|