How to download HTTP directory with all files and sub-directories as they appear on the online files/folders list?

后端 未结 8 1674
情歌与酒
情歌与酒 2020-12-02 03:29

There is an online HTTP directory that I have access to. I have tried to download all sub-directories and files via wget. But, the problem is that when wg

相关标签:
8条回答
  • 2020-12-02 04:10

    wget is an invaluable resource and something I use myself. However sometimes there are characters in the address that wget identifies as syntax errors. I'm sure there is a fix for that, but as this question did not ask specifically about wget I thought I would offer an alternative for those people who will undoubtedly stumble upon this page looking for a quick fix with no learning curve required.

    There are a few browser extensions that can do this, but most require installing download managers, which aren't always free, tend to be an eyesore, and use a lot of resources. Heres one that has none of these drawbacks:

    "Download Master" is an extension for Google Chrome that works great for downloading from directories. You can choose to filter which file-types to download, or download the entire directory.

    https://chrome.google.com/webstore/detail/download-master/dljdacfojgikogldjffnkdcielnklkce

    For an up-to-date feature list and other information, visit the project page on the developer's blog:

    http://monadownloadmaster.blogspot.com/

    0 讨论(0)
  • 2020-12-02 04:11

    you can use lftp, the swish army knife of downloading if you have bigger files you can add --use-pget-n=10 to command

    lftp -c 'mirror --parallel=100 https://example.com/files/ ;exit'
    
    0 讨论(0)
提交回复
热议问题