Skip to main content

All Questions

Tagged with
192 votes
5 answers
480k views

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

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 ...
Jay's user avatar
  • 2,265
92 votes
9 answers
180k views

Python: download a file from an FTP server

I'm trying to download some public data files. I screenscrape to get the links to the files, which all look something like this: ftp://ftp.cdc.gov/pub/Health_Statistics/NCHS/nhanes/2001-2002/L28POC_B....
user1507455's user avatar
  • 1,103
38 votes
4 answers
100k views

How do you upload a file to an FTP server?

I created a function to download files from an FTP server that I have access to. How would I upload files back to the FTP server? Below is the download_files method i used: public static void ...
Mike's user avatar
  • 2,299
29 votes
4 answers
40k views

How to know if file is complete on the server using FTP?

I have a file scanner application in Java, that keeps scanning a directory on a server using FTP. gets list of files of the directory and downloads them one by one. on the other side, on the server, ...
mostafa.S's user avatar
  • 1,512
29 votes
1 answer
35k views

Using R to download newest files from ftp-server

I have a a number of files named FileA2014-03-05-10-24-12 FileB2014-03-06-10-25-12 Where the part "2014-03-05-10-24-12" means "Year/Day/Month/Hours/Minutes/Seconds/". These files reside on a ftp-...
Alexander's user avatar
  • 644
15 votes
1 answer
32k views

Trying to download file from FTP results in an "500 Illegal PORT command" error

If I execute this locally, everything works fine: require 'net/ftp' ftp=Net::FTP.new("myftpserver.com", "username", "password") ftp.getbinaryfile("/myfile.zip","localfile.zip") ftp.close If I ...
Pavel K.'s user avatar
  • 6,757
15 votes
2 answers
25k views

Aria2c parallel download parameters

I am reading the Aria2c download manager documentation and some parameters seem redundant to me. For example: -x The maximum number of connections to one server for each download. Default: 1 -j Set ...
lotrus28's user avatar
  • 898
11 votes
2 answers
21k views

wget: obtaining files matching regex

According to the man page of wget, --acccept-regex is the argument to use when I need to selectively transfer files whose names matching a certain regular expression. However, I am not sure how to use ...
Mark Jin's user avatar
  • 2,773
11 votes
3 answers
12k views

Android: How can I get the file size of a FTP file via FTPClient?

How can I read the file size of a file that is stored on my ftp server? I don't like to implement another libary. I am working with commons-io-2.4 and commons-net-3.1 Answer and code from talhakosen ...
Marco Seiz's user avatar
9 votes
2 answers
64k views

Node.js connect to ftp and download files

Hello i downloaded this npm module to connect to my ftp : node-ftps connection class var FTPS = require('ftps'); var ftps = new FTPS({ host: 'myhost', username: 'user', password: 'mypw', ...
Alex's user avatar
  • 467
9 votes
1 answer
10k views

Monitoring progress using Apache Commons FTPClient

I have a simple FTPClient class that downloads files form an FTP server. I also need to monitor progress of the download, but I do not see a way how. The actually download files function is a simple ...
Christian Green's user avatar
8 votes
2 answers
28k views

PowerShell FTP download files and subfolders

I like to write a PowerShell script to download all files and subfolders from my FTP server. I found a script to download all files from one specific folder, but I also like to download the subfolders ...
Pascal's user avatar
  • 105
7 votes
3 answers
39k views

Upload file and download file from FTP

I am trying to make a program that uploads/downloads .exe file to a FTP I tried using FtpWebRequest, but I only succeed to upload and download .txt files. Then i found here a solution for ...
Spreadzz's user avatar
  • 299
7 votes
2 answers
12k views

Download .RData and .csv files from FTP using RCurl (or any other method)

I've uploaded a .RData file (created using save()) to an ftp server, and I'm trying to use getURL() to download that same file. For all the examples and posts I've read, I can't seem to get this to ...
rbatt's user avatar
  • 4,777
7 votes
2 answers
7k views

Download manager in Java [closed]

I need to several some huge files (several gigs) from Java via FTP/HTTP. Is there a ready library (java / command line tool) to facilitate the download? Some obvious requirements are: Multi-...
ripper234's user avatar
  • 228k

15 30 50 per page
1
2 3 4 5
22