Skip to main content

All Questions

Tagged with
0 votes
1 answer
231 views

i want download files with python using wget(FTP). but error occured. please help to download

I want down load "*_ice.nc" files in ftp. so.. library import wget import math import re from urllib import request adress and file list url = "ftp://ftp.hycom.org/datasets/GLBy0.08/...
Kim Young Jun's user avatar
0 votes
1 answer
1k views

Ansible Downloading large files

I am trying to download backup files from my websites. I have structured my playbook the following: site_vars.yml holds my variables: website_backup_download: - name: ftp://username:userpassword@...
theadmin's user avatar
3 votes
1 answer
840 views

Having trouble downloading a file through FTP. (wget, curl, aria2c)

I am having trouble downloading a file through FTP (ftp://ftp.pride.ebi.ac.uk/pride/data/archive/2017/11/PXD007635), this FTP site doesn't require any credential and I can download it directly by ...
frankligy123's user avatar
3 votes
1 answer
519 views

Download only the header of binary files from an FTP

I have access to a public ftp server that contains several thousands of large binary file. I'm able to download all the files of a given folder with wget but this is time consuming and takes a lot of ...
JRR's user avatar
  • 3,183
0 votes
1 answer
58 views

wget chose location ftp download

im trying to use wget for FTP download ( auth ) this is the command i used to download the file bat.bat in appdata dir ... i got my file inside new folder created by wget named ( website.com ) ...
evilcode1's user avatar
  • 121
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
0 votes
2 answers
2k views

Download all files matching a mask from a remote FTP directory tree to the same local folder

I am trying to download a file with name ending with *.csv. The problem is complicated by the fact that this *.csv contains in directory of unknown name: E.g. Sometimes it would be 2015/Date 29:10:...
andy_ttse's user avatar
0 votes
2 answers
261 views

What would be the best way to download a list of files from a server?

I have a list of SWF files that I want to download to my PC. Is there a quick way to do this from my server, like using WGET or something similar. Each file line list is a new line: http://super.xx-...
TheBlackBenzKid's user avatar
0 votes
1 answer
3k views

Need Shell Script to download file from ftp link?

I need to get this file ftp://1034733:[email protected]/idx_fl_ftp_down/idx_ftmyersbeach_dn/ftmyersbeach_data.zip to my site's server. THis seems like an easy enough task... but, I cannot ...
user853819's user avatar
0 votes
1 answer
2k views

Wget Folder in Bash

I'm trying to use wget in bash to get a folder from my ftp host, but when I download the files it makes new folders for the folder that I'm downloading. For example, when I use this script to download ...
Brian Leishman's user avatar
1 vote
1 answer
6k views

Why would HTTP transfer via wget be faster than lftp/pget?

I'm building software that needs to do massive amounts of file transfer via both HTTP and FTP. Often times, I get faster HTTP download with a multi-connection download accelerator like axel or lftp ...
jondahl's user avatar
  • 121