Skip to main content

All Questions

Tagged with
0 votes
0 answers
27 views

Downloading files from multiple/different directories on the ftp server using python [duplicate]

I am trying to download these files from ftp server 'data-out.unavco.org'. These are the files (out of 329 of these files, i only listed 3): ftp://data-out.unavco.org/pub/rinex/obs/2015/001/adis0010....
Solomon's user avatar
-1 votes
1 answer
2k views

Download a file from ftp subdirectories using cmd script

I was trying to download multiple files from our ftp server using the script: mget cd\dir_here\subdir_here\sample*.txt but it didn't work so I tried to change to back slash: mget cd/dir_here/...
Programmer in progress's user avatar
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
1 vote
1 answer
1k views

Problems downloading files from ftp server to directory

I am trying to download files from an ftp server to a local folder. Below I have included my code, the script is able to access the ftp succesfully and list the names of the files on the ftp server ...
user avatar
1 vote
1 answer
188 views

Identifying directory to download from in FTP for different dates

We need to create or integrate some existing software which identifies the FTP folder to download files. The problem here is the folder structure will be configured by the user according to how the ...
puneet's user avatar
  • 797
0 votes
1 answer
844 views

Downloading a directory/subdirectory from the FTP server to ios application folder

i am creating an application which requires me to download & sync all the data on the FTP directory to the ios application's document directory. I found many examples like apple's sample FTP code ...
stackNeverFlow'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
0 votes
1 answer
929 views

Download FTP using FtpWebRequest

I use this code to download a file by FTP: FtpWebRequest reqFTP; reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + IPServer + "/")); reqFTP.UseBinary = true; reqFTP.Credentials = new ...
Roger G's user avatar
  • 1,605
3 votes
1 answer
5k views

Traversing an ftp folder with python

I need to write a python script that traverses a folder on a FTP server. for file in ftpfolder: #get it #do something untoward with it Snippets and non-wheel-reinvention advice welcome.
MockWhy's user avatar
  • 153
0 votes
1 answer
1k views

Power shell for downloading folders through ftp

I have a web application that generates and uploads documents (word, pdf etc) on the server. Now I am writing a power shell script that will first transfer these files to an ftp folder. This part is ...
xeshu's user avatar
  • 798