如何從網站大量下載多個 Dropbox 連結?

如何從網站大量下載多個 Dropbox 連結?

我正在瀏覽一個網站,該網站的作者包含多個指向 Dropbox 上文件的連結。我想下載所有這些內容而不點擊每個單獨的連結。我有幾個可以批量下載文件的 Chrome 擴展程序,但它們下載的是 html“預覽”而不是文件本身。

有什麼解決方案可以讓我下載頁面上的所有連結嗎?

下載帳戶上的所有文件也可以。

答案1

以下是最新 Windows Powershell 中的兩個程式碼範例。

一種類型的多個單獨文件

For ($i=1; $i -le 15; $i++) {
    "{0:D2}" -f $i
    wget -Uri https://www.dropbox.com/s/6bi1fec2toq7e69/Chapter$i.pdf?dl=1 -OutFile "Chapter$i.pdf" -Verbose
}

整個資料夾為 zip 文件

$html = New-Object -ComObject "HTMLFile"
 
$html.IHTMLDocument2_write($(Get-Content .\Ansys.html -raw))

$links=$html.Links
 
#$html.all.tags("A") | % innerText

$urls = $links | Where-Object {$_.href -like “http*”} 

Foreach ($i in $urls) {

    if ($i.outerHTML -like "*.zip*") {
        $source  = $i.outerHTML.ToString()|%{$_.split('"')[1]}|%{$_.substring(0,$file.length-1) + '1'}
        $outfile = $file.split('/')[5]|%{$_.split('?')[0]}
        wget -Uri $source -OutFile $outfile
    }
} 

相關內容