Most of the time we are using FTP to migrate the account from one server to another server. Some time few directories only need to copy but normal FTP "mget" feature allows to fetch the files only. In that case we can use FTP with the WGET option to fetch directories.

wget -r ftp://Username:Password@ftp.domain.com

In above syntax we are using WGET with the -r option for recursively copy. User name will be FTP user name with respective password and instead of @ftp.domain.com, we can use domain name or server ip from which you want to copy directory.