Questions tagged [mget]

mget is a ftp command to retrieve files from the remote server to the locale machine.

20 questions
2
votes
1 answer

R pipe, mget, and environments

I'm posting this in hopes someone could explain the behavior here. And perhaps this may save others some time in tracking down how to fix a similar error. The answer is likely somewhere here in this vignette by Hadley Wickham and Lionel Henry. Yet…
Corey N.
  • 159
  • 11
2
votes
1 answer

mget producing: Unable to parse response body for Response

I'm issuing a Multi-Get request via the Java High Level REST Client and I'm receiving the following exception: "Unable to parse response body for Response{requestLine=POST /_mget HTTP/1.1, host=http://localhost:9200, response=HTTP/1.1 200 OK}" I…
spottedmahn
  • 14,823
  • 13
  • 108
  • 178
1
vote
1 answer

get multiple docs by ID as ActiveRecord in Yii2 from ealstic search using mget()

I'm using the Yii2 class yii\elasticsearch\ActiveRecord to recieve data from elastic search. Usually methods in this class for getting data from elastic will return that data as ActiveRecord (AR) object. So it's easy, to create an activeDataProvider…
The Bndr
  • 13,204
  • 16
  • 68
  • 107
1
vote
1 answer

how can I get all files including sub directory? (mget -R * Not a regular file / No such file or directory)

I used computer 'A' to remotely access computer 'B'. And I want get all files in directory1 including sub directory at computer 'A'. But when I used mget -R *, that comments were shown (Not a regular file, No such file or directory) Below, it is a…
gimi
  • 11
  • 1
1
vote
1 answer

Supplying dynamic pattern (YYYYMMDD) as ftp mget pattern

I am writing a script that supposed fetch today's files (about a dozen) from an FTP site using mget like so ftp -n XX.XX.XX.XX <
Olumide
  • 5,397
  • 10
  • 55
  • 104
1
vote
1 answer

How to use mget to ftp files containing specific string?

I am using mget to retrieve files from a remote server to local directory in Windows. lcd C:\E920_1\autopkg\saveE1logafterDir\serverlog mget /slot/ems2576/appmgr/jdedwards/e920/6210/log/jde_*.log Now, I wish to add additional step to retrieve out…
RajSanpui
  • 11,556
  • 32
  • 79
  • 146
0
votes
0 answers

Windows FTP mget and ls commands don't work

I have a simple FTP script to download files from a directory, but when I run it, it just goes out to lunch and never comes back. ftp> ftp -n -s:"download.txt" ftp.mysite.com download.txt: user ******* ******** ascii cd /remoteFiles prompt off mget…
Eric Belair
  • 10,574
  • 13
  • 75
  • 116
0
votes
3 answers

Using regular expression in lftp to ignore some strings from file name

Get specific file with name like abc_yyyymmdd_hhmmss.csv from directory using mget. Example files in a folder: abc_20221202_145911.csv abc_20221202_145921.csv abc_20221202_145941.csv abc_20181202_145941.csv But, I want to ignore hhmmss part. I want…
likeGreen
  • 1,001
  • 1
  • 20
  • 40
0
votes
1 answer

Unexpected behavior of ls(pattern="")

As I want to bind several dataframes together to retrieve one large frame, I use mget(ls(pattern="")) to bind rows by pattern. This works usually well, except for the following example: library(dplyr) `Accuracy 1` <- data.frame (Product =…
Leonhard Geisler
  • 506
  • 3
  • 15
0
votes
0 answers

Slow sftp.mget when pulling a large number of files (10,000+)

We are pulling thousands of files (10,000+) from a remote server by a wildcard. The files are small, and the performance of the transfer itself fine. However, the implicit "ls .856" performance is awful. Supposedly the file listing logic has an…
Jason V
  • 837
  • 9
  • 18
0
votes
1 answer

Script to download file without clicking a button

The website Download the GLEIF Golden Copy and Delta Files. has buttons that download data that I want to retrieve automatically with a python script. Usually when I want to download a file, I use mget or similar, but that will not work here (at…
elbillaf
  • 1,952
  • 10
  • 37
  • 73
0
votes
1 answer

Downloading Specific Filenames with FTP

I have about 1,000,000 files and I should do FTP to get some specific files. in 1,000,000 files with the name of ML0000000-ML1000000 i want specific file starts ML00002222 till ML00899999. can anyone help me how to edir mget for ftp ? ######login to…
CodeGirl
  • 81
  • 8
0
votes
1 answer

Redis mget not working as expected with redis-py-cluster client

I am using "redis-py-cluster" to connect to our Redis cluster. We have a requirement to query 100 keys from redis cluster in one call. I use redis hashtags (with {}) to hash all the keys to one node(Ex: {feed}1,{feed}2,{feed}3 are some sample keys).…
umm
  • 1
  • 1
0
votes
0 answers

How do I solve "FTP error: 500" in MATLAB?

I want to download oceanographic data using mget in MATLAB. This is my code: direc='nrt.cmems-du.eu'; % directory from which I download the…
0
votes
2 answers

mget in Bash script doesn't work due to huge files because of time out error

I am trying to execute bash script which has mget *.* to download all the files in the directory. it is downloading couple of files in File1 but it is skipping the File2 part probably due to time out error. I believe it is due to time out error…
Alekhya varma
  • 93
  • 2
  • 8
1
2