我正在尝试根据我每天从我的网站下载的文件创建一个脚本来为我运行一个函数。
基本上,我的网站会根据日期(yyyy、mm、dd)创建一个文件夹。我希望applescript首先打开该文件夹,然后对里面的每个文件夹/文件运行该操作。
麻烦的是,当我尝试使用变量将脚本指向该文件夹时,它给了我错误:无法将路径名变为常量。
也许真正的问题是我对此有多陌生!这是我尝试过的:
tell application "Finder"
set {year:y, month:m, day:d} to (current date)
set theTime to y & m & d
set pathToTarget to path to theTime
open folder pathToTarget of folder "F-grams" of folder "files" of folder "default" of folder "sites" of folder "foldagram" of folder "htdocs" of folder "MAMP" of folder "Applications" of startup disk
end tell
谁想帮助新手走上正轨?-JB