Answers:
我建议你使用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将自动为您切换目录。