我使用以下命令来限制对文件的编辑:
attrib +r C:\temp\attributes.txt
每当我尝试编辑和保存它们时,系统都会提示我“另存为”对话框,其中默认位置为“C:\temp”。有没有办法让“另存为”对话框始终转到我选择的默认文件夹“D:\project”?
如有任何建议我将不胜感激。
答案1
我建议你使用自动热键.您可以创建这样的脚本:
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 将自动为您切换目录。