此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。% i8 ]; C; }; Z
正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
" R6 K, f& N1 W. O& Z. e# l 方式一: i+ Q% g, ?# Y
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,+ ]3 ^- g9 O8 O) s6 V7 u
去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和# q, B# F s, v
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
" j9 z5 @# i7 R3 f8 D 方式二:# R7 P Z( G8 W, Q; o) J, u' ?
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:0 A: G! i/ \$ x& h4 V
SetTitleMatchMode RegEx4 C8 e1 Q, c0 r9 D" E% \2 i
return l& U/ D+ ^: s) T' g% n. D
; Stuff to do when Windows Explorer is open
- X6 J2 A, M0 P0 L ;
* I" o; T, Q; s #IfWinActive ahk_class ExploreWClass|CabinetWClass
; T. L# f$ ?, o4 P1 a8 J) n& [ ; open ‘cmd’ in the current directory
# p( N1 u# d. a% x P ;
S% ` ~* N# V #c::
: s9 T0 _( ~; x OpenCmdInCurrent()
; }, ~7 y, {8 B8 c% @" g# L! n return3 n; {. L' ?. \- H
#IfWinActive9 n% ^2 }: [; |
; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
; r; A9 t( B0 d& H+ n( p ; Note: expecting to be run when the active window is Explorer.6 ?5 H, ^! ]5 a7 G: u
;) |5 j _8 S$ S% U' A2 T
OpenCmdInCurrent(): l1 v W* ?% r4 \4 C
{
. N1 v, N2 Q4 F% e. H ; This is required to get the full path of the file from the address bar J4 a i( F$ d3 D- M" P1 F
WinGetText, full_path, A7 S3 \& ~$ s& @ D4 p$ D; q
; Split on newline (`n)
' I: Q9 {9 c6 q) X7 ~/ l StringSplit, word_array, full_path, `n
9 O3 y: d1 S+ `8 n" y/ F, [- U& S ; Take the first element from the array. ^2 K8 c0 H* C1 k r
full_path = %word_array1%
2 O& @8 I9 {. i; a: Q% K ; strip to bare address
( X% j: P _* W3 C7 e full_path := RegExReplace(full_path, “地址: “, “”)
0 G! I& G! `$ q ; Just in case – remove all carriage returns (`r)1 ]/ @) r1 s; d6 M; U6 E
StringReplace, full_path, full_path, `r, , all
! m- h3 w" N% L) Z$ L IfInString full_path, \: V/ x0 Z- R! n% f0 O& R3 V8 ?
{
6 `, K2 Y$ _* X' c- a q Run, cmd /K cd /D “%full_path%”
9 P3 F M6 K" Z* n( g# n3 k7 K }
1 U5 t5 [% w+ x; o' E+ n else
0 @# |0 f7 L/ g {) i. t0 _8 n" V# c
Run, cmd /K cd /D “C:\ ”2 ?* S, F5 N! Z! e, c2 `& L
}# @( b7 H; Q; @6 k$ ]( P% H( [
}
+ @ g% a# f! W! O 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。! R6 k. y3 F q9 v. ?3 O
这段小代码肯能有两个你需要修改的地方: @& y. k! x2 @7 `# Z5 q
1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
1 r( Q- g, J/ n8 T; B. _) _3 q 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “- _! I2 n8 |! V! ?& R. x: [2 F' q
|