如何在使用“attrib + r”时更改默认的“另存为”路径?


2

我使用以下命令来限制对文件的编辑:

attrib +r C:\temp\attributes.txt

每当我尝试编辑并保存它们时,系统会提示“另存为”对话框,其中“C:\ temp”为默认位置。有没有办法让“另存为”对话框始终转到我选择的默认文件夹“D:\ project”?

任何建议都会很有意义。

Answers:


1

我建议你使用autohotkey。你可以创建一个这样的脚本:

loop{
; wait until the Save As dialog appears
WinWaitActive,Save As
; jump to the target dir
send D:\project{enter}
; wait until the Save As dialog gone
WinWaitNotActive,Save As
}

因此,当弹出保存为diagol时,autohotkey将自动为您切换目录。


谢谢。我是DOS的初学者,从未听说过autohotkey。你怎么建议我应该在脚本之上运行?
Ibe

谷歌autohotkey。autohotkey是一个用于Windows自动化的开源软件。
David Dai

这个ahk的唯一问题是,我关闭的任何文件都会导致我只为一个程序设置默认值。我希望'D:\ project'仅用于一个程序。
Ibe
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.