此文仅限于对经常需要打开命令行并且感到正常打开命令行方式很浪费时间的人。
# A; s2 }5 q f 正常情况下我门需要打开CMD, 然后再CD到自己需要的目录, 这对偶尔用用的人倒没什么。 但是经常需要这么些操作就感到浪费了大把时间。 现在提供两种方式让你像在linux中那样更高效的在当前目录打开命令行。
. d9 Y3 g1 h' {9 p 方式一:/ s! {9 S: k# c7 ]
在当前目录按Shift+鼠标右键, 你就可以看到类似的在此处打开命令行的选项了, 如果你想去掉shift,直接按鼠标右键就有此选项, 那么你需要用简单的修win7系统改下你的注册表,
0 W" q& T6 S& O+ z( E! t ` 去注册表位置HKEY_CLASSES_ROOT\Directory\shell\cmd 下面将Extended键值删掉, 如果你还希望驱动器和桌面也能这样, 将HKEY_CLASSES_ROOT\Driver\shell\cmd和
8 T$ }, D7 V/ e; Q* s. ~# ?& i. n HKEY_CLASSES_ROOT\Directory\Background\shell\cmd 下的Extended键值去掉即可。
4 @( U7 h. o/ Y$ [$ I- I 方式二:
4 u- P& k; a1 D# {# {& R 用快捷键,当然会用到人见人爱的Autohotkey. 其Auothotkey代码如下:4 {8 @/ A4 D5 B L g
SetTitleMatchMode RegEx7 B8 b1 }, @. @
return
) j: K8 f# N( n ; Stuff to do when Windows Explorer is open# J F+ V6 T: d& _; |: }
;' x5 K8 i) v9 `, e1 U3 ?
#IfWinActive ahk_class ExploreWClass|CabinetWClass/ f' I, k, s+ f) T! @* A
; open ‘cmd’ in the current directory
6 |5 q1 G$ Q1 I- G ;
- o; d- \* S- t; u7 P& J5 k' i- [ #c::
* q) w% I" M% C OpenCmdInCurrent()
) ?6 w* y2 m" q$ u) P8 } return9 w) A# [) y' I6 [* N8 {3 O
#IfWinActive
+ F# X2 _: P. S: I! U& G* m! S, Y ; Opens the command shell ‘cmd’ in the directory browsed in Explorer.
/ `' D+ O1 s5 y: I( h ; Note: expecting to be run when the active window is Explorer.
" N2 u; |& f' l& z+ ^; D ;
; \3 o% s. k* r( ]" ` OpenCmdInCurrent(): e+ y# u6 f5 M, R3 }& P, G
{
% R% H" c/ ], A2 k# z ; This is required to get the full path of the file from the address bar3 c& |% N. j7 i5 z+ B8 o
WinGetText, full_path, A* e! t* r1 ~1 }# g7 O
; Split on newline (`n)
: V) s/ f1 c) u! S2 _2 Q# o8 E: \ StringSplit, word_array, full_path, `n
U; j+ a; G0 Y& n5 K ; Take the first element from the array; j, o0 U9 B5 W
full_path = %word_array1%
% y2 F1 z. b4 T ; strip to bare address
) ~' K# y& f6 L2 g) d% ?. K- t3 F9 a full_path := RegExReplace(full_path, “地址: “, “”)
m% R4 ~' ~6 Q7 O { ; Just in case – remove all carriage returns (`r)5 U) h1 n* w% Y! I
StringReplace, full_path, full_path, `r, , all; E0 I' F/ D$ k, J: |) N- _
IfInString full_path, \
; _# H2 }; N$ S$ K& c {
M4 k, a" M2 Y* r Run, cmd /K cd /D “%full_path%”
& v; _% h, p- `2 u. e }( D2 T* H2 N& O1 r& L0 Q1 N! g
else
2 N) S0 {1 F1 ^ {: E" G3 M$ C \: [: O
Run, cmd /K cd /D “C:\ ”
* D6 c& P- Q8 b }
1 i9 i/ u- U& u8 `# u$ x; V# K }
8 g T2 e, {. p* A" h5 A' t 把上面代码存为UTF-8编码格式(因为有中文)的ahk格式xp系统之家,用Autohotkey打开,然后按win键+C就可以在当前目录下打开cmd命令行了。
2 @" T( A; w) g 这段小代码肯能有两个你需要修改的地方
" x2 M2 t2 _4 d* y 1. #c:: 中的#代表win键, 这个代码中使用的是win键+C, C可以改成你需要的其它键
0 K! A. G; f: x2 F ?, \ 2. 如果你的系统是英文的,你需要把”地址: ” 改为 “^Address: “2 {7 d1 L |) ] Q
|