This tutorial will teach you how to use wget to download entire folder of remote server with recursively example: recursively download all the files that are in the subfolder3 folder for the ftp ftp://user:pass@www.yourdomain.com/folder1/subfolder1/subfolder2/subfolder3 Solution: wget -r -np -nc -nH –cut-dirs=4 ftp://user:pass@www.yourdomain.com/folder1/subfolder1/subfolder2/subfolder3 -r = mean recursive -np = Do not Read more »