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
3
votes
1 answer

Python- pull csv from ftp url with credentials

Newb to python and working with APIs. My source create an ftp url where they are dumping files on a daily basis and I would like to grab file to perform engineering + analysis. My problem is, how do I specify username and password to pull the csv?…
user8464180
  • 33
  • 1
  • 3
3
votes
1 answer

Sending files over ftp using Apache Camel

I've been trying to copy a file from the local directory to a remote directory. The problem is I don't know how to specify the address of the destination which is another computer. Can someone please show an example of ftp URL with ip address. It…
Milan
  • 47
  • 6
3
votes
1 answer

How to publish site using Visual Studio 2010 FTP

I have published my website using VS2010 and then selected FTP Site. Problem is that it does not show me update status. and takes too much time as compare to other FTP client. Is there any way or plugin for visual studio 2010 so i can build and…
SOF User
  • 7,590
  • 22
  • 75
  • 121
3
votes
1 answer

FTP over CMD for different servers

So I am trying to write a small batch program to copy files over ftp to another device The problem is the devices I am copying to are all different servers, but the information i'm copying stays the same. How can I write this so when I open the…
3
votes
1 answer

Excluding an item in a for loop

I am trying to find the total size of a root directory on an FTP server. However, I do not have access to one of the directories in the root. I want to use this function to sum the sizes of the directories in the root: size = 0 for filename in…
3
votes
2 answers

How to use ftp with laravel 5?

The file Storage section of the laravel docs shows an example FTP config, but it doesn't explain how to use it. Can someone give an example of how to make laravel use an ftp connection in addition to a disk connection?
Benubird
  • 18,551
  • 27
  • 90
  • 141
3
votes
3 answers

FtpWebRequest FTP download with ProgressBar

My code works, but the ProgressBar jumps directly to 100% and the download will go on. When its finished then comes a messageBox to take a Info. I have already changed the buffer size, but it doesn't matter. What am I doing wrong here? Here is my…
Andre
  • 75
  • 1
  • 2
  • 6
3
votes
0 answers

Twisted DTPFactory timeout

I'm trying to setup a simple FTP server with twisted: sudo venv/bin/twistd ftp -p 21 -r /home/ftpuser/ftproot/ --auth file:/home/ftpuser/pass.dat When I run this from my Mac, it works perfectly. But I'm getting this error when running twisted FTP…
swbandit
  • 1,986
  • 1
  • 26
  • 37
3
votes
1 answer

Prevent incomplete file transfer over FTP using WinSCP .NET Assembly

I am simply trying to transfer text files from one FTP server to another using a windows service. I download the required files from source FTP server and save it locally on my system and then upload the saved file to the destination server. For…
Jordan
  • 713
  • 15
  • 30
3
votes
2 answers

R httr download files from ftp error 421 "too many connections from your internet address"

EDIT - Short question: Does httr have a finalizer that closes the FTP connection? I'm downloading climate projections files from the ftp server of the NASA NEX project using the httr package. My script is: library(httr) var = c("pr", "tasmin",…
Nemesi
  • 781
  • 3
  • 13
  • 29
3
votes
2 answers

Can files be created in Pivotal Cloud Foundry environment

i have deployed an application into the pivotal cloud using Spring Integration ,where it should read file and create more files in another folder based on custom logic , and after that is has to ftp those output files to remote directory .The…
DinaMike
  • 101
  • 4
  • 13
3
votes
1 answer

Fail SSIS task when the mask to select files to be uploaded to FTP server using WinSCP matches no files

I'm creating a SSIS package that uses a script task (via WinSCP) to upload a file to an FTP. The upload works fine, however I need the process to fail if there is no file uploaded (currently it just loops through and passes a success) - Haven't had…
user8023823
3
votes
3 answers

"php_connect_nonb() failed: Operation now in progress (115)" with TLS/SSL-encrypted FTP connection in PHP - Unencypted connection works

I'm trying to use an automatic backup script for cPanel accounts of my server. I have mounted an FTP server in one local machine with FileZilla Server. I can connect and transfer files successfully with FileZilla client, a Plesk server, and…
Daniel P.
  • 184
  • 1
  • 3
  • 16
3
votes
3 answers

C/C++ library as FTP server

I have to add a ftp server to my C++ program so it can receive some files. Do you know any library out there in C or C++ ?
Ruddy
  • 87
  • 1
  • 4
3
votes
1 answer

Downloading second file from ftp fails

I want to download multiple files from FTP in python. the my code works when I just download 1 file, but not works for more than one! import urllib urllib.urlretrieve('ftp://ftp.ncbi.nlm.nih.gov/pub/pmc/oa_package/00/00/PMC1790863.tar.gz',…
ehsan shirzadi
  • 4,709
  • 16
  • 69
  • 112