如何在Apple脚本上下载文件

时间:2014-02-22 03:10:28

标签: applescript

我想制作一个AppleScript程序,为任何人制作一个Minecraft服务器。

我需要从http://dl.bukkit.org/latest-beta/craftbukkit-beta.jar下载文件。

这是我目前的代码:

if the button is "Beta" then
    do shell script "curl -o ~/Desktop/BukkitServer http://dl.bukkit.org/latest-beta/craftbukkit-beta.jar"
end if

1 个答案:

答案 0 :(得分:2)

你卷曲了一点+你需要确保文件夹" BukkitServer "也存在。

tell application "Finder"
    if not (exists folder "BukkitServer" of desktop) then
        make new folder at desktop with properties {name:"BukkitServer"}
    end if
end tell

do shell script "curl -L http://dl.bukkit.org/latest-beta/craftbukkit-beta.jar -o ~/Desktop/BukkitServer/craftbukkit-beta.jar"