1 0
Read Time:1 Minute, 12 Second

You can easily download and upload files from or to the server. by default window/Linux/mac OS have ftp service exist. just type ftp in cmd or terminal to use ftp service.

The File Transfer Protocol is a standard communication protocol used for the transfer of computer files from a server to a client on a computer network.

Steps using command

$> ftp xxx.xx.xx.xx
$> username : username
$> password: ******

Now you are connected to the server and now you can download and upload files to the server.

$> dir -S 

type above command to list directory and see which file you need to download.

suppose you want to download index.html from the server to your local machine to update index.html

open cmd in your local folder or cd to local directory where you want to download file.

start ftp service using ftp command (ftp XXX.XXX.XX.XX).

$> get index.html

index.html will be download in your local directory , make changes it ready to upload again.

$> put C:\Users\chhetri\Desktop\index.html

file will upload to server successfully.

if you need to upload and download multiple files than start with m e.g. mget * / mput *

ftp 2023

sometime you need to navigate other folder to download files or upload files than just use cd command.

$> cd FOLDER/FOLDER

Current Directory

$> pwd

Exit

$> quit

HAPPY NEW YEAR 2023 TO ALL THE SOFTWARE ENGINEERS

VICKY CHHETRI
Happy
Happy
0 %
Sad
Sad
0 %
Excited
Excited
100 %
Sleepy
Sleepy
0 %
Angry
Angry
0 %
Surprise
Surprise
0 %

About Author

Average Rating

5 Star
0%
4 Star
0%
3 Star
0%
2 Star
0%
1 Star
0%

Leave a Reply

Your email address will not be published. Required fields are marked *