如何从一个网站批量下载多个 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
    }
} 

相关内容