Questions tagged [ftp]

FTP (File Transfer Protocol) is a common protocol for transferring files between computers over networks

FTP (File Transfer Protocol) is a common communications protocol for transferring files between computers over the Internet or other networks.

FTP is just one communications protocol on the web. Others include:

  • Transmission Control Protocol (TCP)
  • User Datagram Protocol (UDP)
  • Internet Control Message Protocol (ICMP)
  • Hypertext Transfer Protocol (HTTP)
  • Post Office Protocol (POP3)
  • Internet Message Access Protocol (IMAP)
2140 questions
128
votes
11 answers

How to upload one file by FTP from command line?

I need to upload a single file to FTP server from Ubuntu. This operation should be done in a script (in non-interactive mode). What is the right syntax for ftp? I'm trying this, to no avail: $ ftp -u ftp://user:secret@ftp.example.com…
yegor256
  • 1,569
  • 3
  • 14
  • 14
83
votes
6 answers

How can I get FileZilla to ignore folder or files (like .svn or CVS)?

How can I get FileZille to ignore folders or files? I don't want to upload my version-control info to my web-server! (question implied in a comment to another answer).
Michael Paulukonis
  • 1,809
  • 2
  • 16
  • 19
72
votes
13 answers

Keeping local windows folder in sync with remote ftp folder in real time

I know it has been asked before, but I would like it to happen in real time and transparently (without the need to open a separate FTP client such as FileZilla). For example, if I edit a text file in the local folder and then save it, it should…
bobo
  • 1,759
  • 4
  • 20
  • 31
65
votes
10 answers

Dead-simple FTP server for Windows?

I Googled for it, tried a few of them, but I find that even the simplest I found (www.xlightftpd.com) is way too complicated. I just need this: single EXE or portable (ie. no installer, just unzip -> run) the root directory is where the server EXE…
OverTheRainbow
  • 5,573
  • 19
  • 62
  • 91
51
votes
4 answers

What is the difference between FTPS and SFTP?

Trying to set up a system for my 4 remote employees to transfer files. It has to be secure. Is SFTP better than FTPS? What is the difference?
user334875
  • 563
  • 1
  • 4
  • 7
50
votes
3 answers

FTPS versus SFTP versus SCP

I would like to know exactly what the difference is between the following protocols: FTPS, SFTP, and SCP. For instance Unix has an scp tool, FileZilla offers FTP and SFTP, whereas JetBrains PhpStorm offers distinct SFTP and FTPS protocols. Thanks…
John Sonderson
  • 3,246
  • 13
  • 45
  • 63
41
votes
7 answers

How to upload a file from the command line with FTP or SSH?

I have never done this before and I am creating a bash shell script to do this for me. I will also be connecting via ssh to do some things (which I already know how to do). So maybe there is a way to upload files via ssh so I can do it all in one…
Andrew
  • 13,604
  • 30
  • 68
  • 82
38
votes
10 answers

How to SCP from Linux server to Windows client

I'm SSHing into a Linux machine using PuTTY and trying to copy a file down somewhere (anywhere) to my local machine. I figure SCP is the best candidate for the job but don't really care, so long as the solution works! I cd to the directory…
pnongrata
  • 2,652
  • 17
  • 48
  • 80
38
votes
8 answers

How to download a folder containing multiple files on an FTP server to a desktop?

I want to download a folder which contains hundreds of files that are hosted on an ftp server to my Windows 7 desktop. I've never used FTP before, so I am not sure where to start.
user42307
37
votes
6 answers

Why can Dropbox be super fast compared to FTP?

I'd like to know why technically Dropbox is much faster than FTP? What kind of technology does it use? I'm not talking about diff files, I'm talking about transferring new files in both cases, Dropbox is much faster. I mean it, very much faster,…
asksuperuser
35
votes
11 answers

Can I upload an entire folder using FTP?

I need to upload a full folder using FTP. Is there is any option for transferring a folder and all of its contents at once?
Shalu
33
votes
5 answers

Is there a Chrome (browser) extension like FireFTP from Firefox?

Is there a Chrome (browser) extension like FireFTP from Firefox? I've tried to find it without success
John Doe
  • 339
  • 1
  • 3
  • 3
31
votes
4 answers

Login with Linux FTP username and password

What's the command for logging in with FTP all with one line? ftp username:password@my.domain.com says: Password required for username:password
Daniel Course
30
votes
4 answers

Downloading file from FTP using cURL

I'm trying to use a cURL command to download a file from an FTP server to a local drive on my computer. I've tried curl "ftp://myftpsite" --user name:password -Q "CWD /users/myfolder/" -O "myfile.raw" But it returns an error that says: curl:…
Josiah
  • 403
  • 1
  • 4
  • 4
29
votes
4 answers

How do I send a file with FileZilla from the command line?

I have a batch file that builds an application, and then I want to upload it to an FTP server from the command line. Considering I do the upload manually with FileZilla, is there a command line for it to upload files? I am limited to Windows.
Gabi Diaconescu
  • 405
  • 1
  • 4
  • 7
1
2 3
99 100