此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
) V# A1 h2 c- _% P% |, I+ j, V 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
& b) {+ m9 o2 {9 x4 Y; ^4 v 方式一:
7 w& O( l9 z1 n* u L5 L 在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,* ^2 i+ t6 W! n
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
! p. W+ w/ r: J U HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。6 v! P. D+ r2 }- }6 p
方式二:+ I/ G& t) L9 }) Z
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:
8 ~& l/ s ]+ J6 c2 u SetTitleMatchMode RegEx
7 u' z5 b9 \5 @) V return
' A' k: D1 ~6 y6 O. W t3 p4 i5 M ; Stuff to do when Windows Explorer is open4 }+ P1 W9 o" |, u, }& d! Q4 M& r! ~
;1 ?; a; ~9 G! s3 d
#IfWinActive ahk_class ExploreWClass|CabinetWClass- s# |) c1 U7 V7 l( @' S: v6 k0 r
; open ‘cmd’ in the current directory& H1 b, r) Z8 t) f2 q7 |
;6 z- [/ m8 b6 Q V5 N. U
#c::4 |+ L! @( Y; F2 b
OpenCmdInCurrent()
# A3 |) J. G2 D: I; q7 p return
! [, Y: [# b# }) P #IfWinActive
* k9 E9 F$ K. | ; Opens the command shell ‘cmd’ in the directory browsed in Explorer./ ?. G. T* O* m* D
; Note: expecting to be run when the active window is Explorer.
" E! K! Q, A$ s p ;6 Z6 f, g: N h
OpenCmdInCurrent()
& `( ]. ]: `( o4 H: f' q {
& J9 F' D% w) ^* W' x" [1 H ; This is required to get the full path of the file from the address bar
) L- r' h! a7 `! p9 V: b WinGetText, full_path, A5 H# k1 l; U, o+ k
; Split on newline (`n)
0 c! }5 G; r" n( W( M9 ~ StringSplit, word_array, full_path, `n
. @0 C9 ^8 h3 S, L5 b" S ; Take the first element from the array
* ^- s+ q0 m' _5 C7 |3 ? full_path = %word_array1%$ y4 C' u. ~. B3 |5 Z+ N
; strip to bare address$ q+ y! Y3 o6 R' H
full_path := RegExReplace(full_path, “地址: “, “”). D/ b. y" z' [# ]$ ~ O8 e
; Just in case – remove all carriage returns (`r)! T- M9 C: H( Q$ a. c4 `
StringReplace, full_path, full_path, `r, , all
; R& a+ m4 ~( H2 c" o2 T IfInString full_path, \
5 ]0 O/ S7 z: s+ b/ A% y {- k( R* M2 J: g4 T0 @$ | O
Run, cmd /K cd /D “%full_path%”
1 u4 ?( P' \ D }* Z4 }/ S8 ]% Y4 a/ R0 q
else
! _; d2 N3 v1 W/ O! l {
) l7 N4 J5 j4 n4 F Run, cmd /K cd /D “C:\ ”
! X. \/ T |: J" l }" U: c% u7 R" Q! L! P$ H+ {! R0 V
}
0 ~/ v+ j1 p) c4 h4 t5 n/ x1 ~ 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。. j% O# a, O6 x: D: x
这段小代码肯能有两个你需要修改的地方! e6 o, {' _& d/ C* O
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键# u: N2 F( r8 H
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
- L* r! ?3 F! O |