gpt4 book ai didi

javascript - 如何从不同位置自动下载多个 PDF 文件(AppleScript 或 JavaScript)

转载 作者:行者123 更新时间:2023-11-30 18:43:47 27 4
gpt4 key购买 nike

我每周必须分析大约 30 个促销商店文件夹。现在我知道在哪里可以找到文件夹 HTML,但我仍然必须重写每个位置手册中的 URL,我想自动化。

我只能使用 AppleScript,或者可能是 JavaScript(在我的 MobileMe 主机上,没有 PHP eo。)

在 URL 中有一些变量:

http://store.website.com/[store]/[region]/[date]NL/[store]_[region]_[date]NL.pdf

我想让它像这样工作:

  1. 要求我告诉的来自或对话

    一个。 Store: [填写Store];
    b.地区:[填写地区];
    C。日期:[填写日期].

  2. 下载文件并保存在我机器上的//specific/path

我是 AppleScript 和 JavaScript 的菜鸟,但我不会使用 PHP/SQL,所以我希望有人能帮我指出一些其他的方向。

最佳答案

AppleScript(下载到您的桌面):

display dialog "Store?" default answer ""
set the Store_Input to the text returned of the result

display dialog "Region?" default answer ""
set the Region_Input to the text returned of the result

display dialog "Date?" default answer ""
set the Date_Input to the text returned of the result

set link to "http://store.website.com/" & Store_Input & "/" & Region_Input & "/" & Date_Input & "NL/" & Store_Input & "_" & Region_Input & "_" & Date_Input & "NL.pdf"

set the destination to ((path to desktop as string) & Store_Input & "_" & Region_Input & "_" & Date_Input & "NL.pdf")

tell application "URL Access Scripting"
download link to destination replacing yes
end tell

关于javascript - 如何从不同位置自动下载多个 PDF 文件(AppleScript 或 JavaScript),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6069412/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com