我们得到了一些具有以下模式的项目 ID 的文件夹:x123_projectname。
我在工作流程中使用Alfred,我需要通过 ID 查找并打开特定文件夹。可以从 Alfred 运行 AppleScript。我是applescript的新手,谷歌帮助我创建了这个:
set theString to "/path/to/folder/containing/projects/"
display dialog "What is the ID?" default answer ""
set theID to the text returned of
(display dialog "What is the ID?" default answer "")
tell application "Finder"
activate
set x to theString & "theID" as alias
open x
end tell
但它没有用 - 你对我有什么提示吗?