You are on page 1of 2

FTP Continuous

Upload/Download

Upload:
1. First Create one folder named FTP in C: drive
2. Create one Text file under C:\ftp & copy the following commands on it
& save the file with the name ftpup.txt
open <FTP Server IP Address>
<User name>
<Password>
bi
ha
put <File Name to be uploaded & path to store the file>
bye
3. Copy the file you want to upload in C:\ftp Folder
4. Now open command window & put the following command
cd C:\ftp
for /L %i IN (1,1,99999999999) DO ftp -s:ftpup.txt
& it will continuous upload the file. If you want to terminate it press
CTRL+C
Download:
.1. Create a text file named ftpdown.txt under C:\ftp & copy the following
line & save the file
open <FTP Server Address>
<User Name>
<Password>
bi
ha
get <Complete path of the file to be downloaded>
bye
2. Now open the command window & put the following command
cd C:\ftp
for /L %i IN (1,1,99999999999) DO ftp -s:ftpdown.txt

& it will continuous download the file. If you want to terminate it press
CTRL+C

You might also like