Sometimes you want to download the whole folder or whole website from a website or a local computer using FTP . You have the password and username details for the FTP but you don’t know how to download the whole folder from the remote computer.
Here the code you need to run in your linux terminal to download the whole folder from a website,if you have the FTP login credentials:
wget -r ftp://username:password@website.com/foldername
In place of username put the FTP username and in place of password put FTP password and in place of the folder put the foldername you wish to download.
If you have any computer related problem, you can ask it at our Question & Answer portal and our experts will answer your queries.

