Questions tagged [ftp]

File Transfer Protocol (FTP) is a well-established protocol for conducting file operations (such as transferring files) over a TCP-based network such as the Internet.

File Transfer Protocol (Wikipedia article) is a protocol, governed by well-established Internet standards, for conducting file operations (e.g. transferring files between two systems) over a TCP-based network such as the Internet or a local area network. FTP employs a client-server architecture, where one system is the "client", which opens a connection to the other system, the "server", the client makes requests of the server, and then closes the connection.

The most common FTP operations that a client will initiate include downloading files (i.e. "get" files from the server) and uploading files (i.e. "put" files on the server). But there are a variety of file system related commands that the client may make of the server (e.g. making directories, renaming files on the server, deleting files from the server, etc.).

14199 questions
347
votes
12 answers

How to recursively download a folder via FTP on Linux

I'm trying to ftp a folder using the command line ftp client, but so far I've only been able to use 'get' to get individual files.
Charles Ma
  • 47,141
  • 22
  • 87
  • 101
329
votes
5 answers

What is the difference between active and passive FTP?

Can someone tell me what is the difference between active and passive FTP? Which one is preferable?
karthik
  • 4,485
  • 8
  • 30
  • 45
263
votes
12 answers

Setting up FTP on Amazon Cloud Server

I am trying to set up FTP on Amazon Cloud Server, but without luck. I search over net and there is no concrete steps how to do it. I found those commands to run: $ yum install vsftpd $ ec2-authorize default -p 20-21 $ ec2-authorize default -p…
SharkTheDark
  • 3,089
  • 4
  • 24
  • 29
241
votes
16 answers

How to retrieve a file from a server via SFTP?

I'm trying to retrieve a file from a server using SFTP (as opposed to FTPS) using Java. How can I do this?
David Hayes
  • 7,402
  • 14
  • 50
  • 62
189
votes
5 answers

Is there a Public FTP server to test upload and download?

What I want to do is measure broadband speed using c#. To do this, I use NetworkInterface.BytesReceived and BytesSent to get the current amount of bytes sent and received from my network adapter and get the DateTime. Then I download/upload a file…
Jay
  • 2,225
  • 3
  • 15
  • 22
170
votes
18 answers

WordPress asking for my FTP credentials to install plugins

I installed a WordPress blog in my local system. But when I try to add plugins from admin it asks for FTP access. What do I need to configure for WordPress to be able to upload without FTP?
sasi kanth
  • 2,637
  • 4
  • 17
  • 29
163
votes
8 answers

FTP/SFTP access to an Amazon S3 Bucket

Is there a way to connect to an Amazon S3 bucket with FTP or SFTP rather than the built-in Amazon file transfer interface in the AWS console? Seems odd that this isn't a readily available option.
zgall1
  • 2,865
  • 5
  • 23
  • 39
145
votes
6 answers

Comparing HTTP and FTP for transferring files

What are the advantages (or limitations) of one over the other for transferring files over the Internet? (I am aware of secure forms of both protocols. I'd like to hear comparisons through personal experiences in terms of performance, reliability,…
Mystic
  • 5,024
  • 4
  • 29
  • 31
138
votes
10 answers

Upload file to FTP using C#

I try upload a file to an FTP-server with C#. The file is uploaded but with zero bytes. private void button2_Click(object sender, EventArgs e) { var dirPath = @"C:/Documents and Settings/sander.GD/Bureaublad/test/"; ftp ftpClient = new…
webvision
  • 1,541
  • 2
  • 12
  • 16
133
votes
9 answers

One line ftp server in python

Is it possible to have a one line command in python to do a simple ftp server? I'd like to be able to do this as quick and temporary way to transfer files to a linux box without having to install a ftp server. Preferably a way using built in python…
zio
  • 2,145
  • 4
  • 21
  • 25
133
votes
15 answers

Git Push into Production (FTP)

I would like to know if there is an easy way to push a GIT repository into production (on a FTP server) ? Thanks
Roch
  • 21,741
  • 29
  • 77
  • 120
109
votes
7 answers

Python Script Uploading files via FTP

I would like to make a script to upload a file to FTP. How would the login system work? I'm looking for something like this: ftp.login=(mylogin) ftp.pass=(mypass) And any other sign in credentials.
Frustrated Python Coder
  • 1,503
  • 3
  • 15
  • 15
105
votes
26 answers

Filezilla FTP Server Fails to Retrieve Directory Listing

I'm running Filezilla Server 0.9.45 beta to manage my server remotely. After setting it up, I tested connecting to it using the IP 127.0.0.1, and it worked successfully. However, to connect to the server remotely, I port forwarded to port 21, and…
Hussain Khalil
  • 1,520
  • 2
  • 15
  • 24
101
votes
7 answers

Free FTP Library

Can you recommend a free FTP library(class) for C#. The class has to be well written, and have good performance.
Robin
100
votes
5 answers

Connecting to an Azure website via FTP using Azure login credentials

What login credentials do I use to connect to the FTP site that is listed on the dashboard of my Azure? I tried using the same credentials I use to log into Azure, but this failed.
Klaus Nji
  • 18,107
  • 29
  • 105
  • 185
1
2 3
99 100