此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
% |6 ~! M/ X' f$ k! R 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
0 L. g: V# K5 `$ {, @& T( j* e% s 方式一:& h% [% @ {5 `- X3 o
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
9 a/ \$ O7 G; C% b( Y u 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和4 \0 t+ Z# L+ Y. S
HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。6 a& Y# u$ Z. _4 S, c
方式二:5 I5 p" W7 c/ W4 }$ _
用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:' e, p2 Y. V% d: Y' n9 \; R ]
SetTitleMatchMode RegEx/ f: d, G( v3 \4 C" E$ a
return
, M: N% P G. o- L$ ? ; Stuff to do when Windows Explorer is open. ~1 ^) |2 y8 U" n. r0 w
;6 b" W" h1 W( b' ?9 @* a
#IfWinActive ahk_class ExploreWClass|CabinetWClass
1 s4 y! s% L6 j% b* ] ; open ‘cmd’ in the current directory
! t: n. A- A0 p1 J* v ;
$ }4 z2 [' ~$ S6 Y' s% _! D# R9 d2 z #c::
4 o3 h0 S) S- i. q4 [/ h5 k OpenCmdInCurrent()
. P! ]- S8 w& m* `6 g return5 E' C& B& f" f; ~0 r
#IfWinActive
! L5 k- A# {3 i! N6 P2 K S$ ~! M& s ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
D z! p; k; W ; Note: expecting to be run when the active window is Explorer.; g# b& a/ O! o" M. q' L# G+ h
;& @3 i: j! p2 n
OpenCmdInCurrent()
- E: m- f2 d: g! I, t- b4 M {
" a8 Q7 }6 d5 Y) ~ ; This is required to get the full path of the file from the address bar
5 Q! {8 S( f: A WinGetText, full_path, A% b5 \2 u4 B& {3 v
; Split on newline (`n)
. W3 {' R6 U9 ]- i$ D; X StringSplit, word_array, full_path, `n
) f4 f# c6 T8 [: Y5 _: A ; Take the first element from the array
5 G( R6 ~; p& g+ f% O6 J' Y full_path = %word_array1%
6 S0 m3 m" M' P ; strip to bare address
) m: o) c" g9 o. a6 c) y+ P' \ full_path := RegExReplace(full_path, “地址: “, “”)! w( Y; C8 E H4 G0 k C# {
; Just in case – remove all carriage returns (`r)0 D- R/ c3 x- Q, s' z& b& [2 i
StringReplace, full_path, full_path, `r, , all
8 a# f% p E5 e4 M IfInString full_path, \& W9 e `" p9 |: l
{1 V; p, g1 b$ M& F6 H% L! ?8 M$ H
Run, cmd /K cd /D “%full_path%”# W. Y! N% f9 C+ `0 V
}9 V" V* U3 I) o, r/ f' H
else
3 Z: z* h0 Y( [/ W {" h; A( W- q9 w# [* t& S; O4 e
Run, cmd /K cd /D “C:\ ”
* H* s" S- o' \5 @. ?$ P1 e9 I4 f }
8 M+ d) V2 }" L" i& W) f3 {" m% u }
2 ?5 x% N' c/ `, L) K 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。& T6 n4 p& E! ^8 O& k: o
这段小代码肯能有两个你需要修改的地方
6 Y0 B- I7 n6 }7 H; b* B 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键4 s. G' @/ y, J5 W2 h
2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “
* G' d& ] p0 K* _ |