msgbartop
I will happily conduct a FREE basic web security scan for any genuine organization interested in my services to point out whether or not I can find vulnerabilities in your application. Just contact me.
Need a PHP Programmer, PHP staff or project manager? Contact me now.
msgbarbottom

10 Oct 09 Recursive FTP/HTTP Download

wget is a great tool. Here’s a short example on how to recursively get a directory from an FTP or HTTP server, also specifying credentials if required.

In short, wget -r http://www.domain.com/directory/ – this works the same with FTP: wget -r ftp://www.domain.com/directory/

If you need to specify a username and password to the FTP server: wget -r ftp://username:password@www.domain.com/directory/

To resume an existing session, specify -c and each file downloaded will attempt to resume from where it left off, if necessary.

Tags: , ,



Leave a Comment

You must be logged in to post a comment.