If you need to upload a full folder with files and sub folders using FTP command line. Is there is any option for transferring an entire folder with its sub folders and files?
Yes, you can use ncftpput. you need to install ncftp program on your Linux system. To upload entire folder follow the steps below:
For Linux:
Install ncftp:
#yum install ncftp
Alternatively (ubuntu, debian):
#apt-get install ncftp
To upload entire folder with its content execute the following command:
#ncftpput -R -v -u "ftp-username" ftp.website.com ftp-upload-path local-path/*
where
-R is a flag for "recursive"; it makes the command copy all subfolders recursively
/ (slash) is your website's root directory
local-path/* selects everything inside this location i.e. /home/userabc/web/*
For Windows:
Download NcFTP Client from http://www.ncftp.com/ncftp/.
Choose NcFTP Client 3.2.5 for Microsoft Windows from the list.
Install it.
When done, a small CMD window with a cherries icon will pop-up. You don't need it.
Just open CMD window and type (click on Start button >> Run, type CMD and click on OK):
ncftpput -u yourUserNameHere -p yourUserPasswordHere -R www.yourWebsite.com / C:\yourFolderDirectoryHere\*
-R is a flag for "recursive"; it makes the command copy all subfolders recursively
/ (slash) is your website's root directory
C:\yourFolderDirectoryHere\* selects everything inside C:\yourFolderDirectoryHere
Most Popular Articles
What is a parked domain?
A parked domain name is an additional domain name that redirect to the same URL as the main...
I want to forward a domain in my account to another domain. Where do I do this?
You can add domain in cPanel and set forwarding to desired domain, you can do it by following the...
What is the purpose of Softaculous installer in cPanel?
Softaculous is a commercial script library that automates the installation of commercial and open...
Control Panel - One click installs
We have by default web application which you can install with few click. Go to your Cpanel...
Can I install scripts with Temok?
Yes, We are providing one click install, an easy and powerful scripts installer. There are...