Eu mesmo encontrei a resposta:
tell application "Finder"
set the target of the front Finder window to (POSIX file "/folder/path/")
end tell
Eu sei que tell application "Finder" to open POSIX file "/folder/path/"
abrirá uma nova janela do localizador, como posso abrir uma pasta na janela do atual localizador?
Eu mesmo encontrei a resposta:
tell application "Finder"
set the target of the front Finder window to (POSIX file "/folder/path/")
end tell
Se você também quiser abrir uma nova janela do Finder quando não houver nenhuma janela do Finder aberta (ou apenas, por exemplo, uma janela de preferências estiver aberta), use o comando reopen
:
tell application "Finder"
reopen
set target of Finder window 1 to (POSIX file "/tmp/")
end tell
Tags finder applescript