Python Forum
How to download a list of files from FTP?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to download a list of files from FTP?
#1
Hi,

I need to download a list of files everyday. These files have the dates in the filenames and I need to pull from 1 - 7 days out.
I have the first part I believe which is this:

import datetime as dt

today = dt.date.today()
dates = []

for i in range(7):
    dates.append(f'ba{str(today + dt.timedelta(days=i))[2:]}.tif'.replace('-', ''))
print(dates)

import ftplib
from ftplib import FTP
import os
# ftp info
HOSTNAME = "ftp.thsite.com"
USERNAME = "myuser"
PASSWORD = "mypass"
savedir = "c:/temp"
os.chdir(savedir)

# connect
ftp = FTP(HOSTNAME, USERNAME, PASSWORD)
ftp.cwd("/Comic_Strips/Baldo")
This returns me a list like this: ['ba220621.tif', 'ba220622.tif', 'ba220623.tif', 'ba220624.tif', 'ba220625.tif', 'ba220626.tif', 'ba220627.tif']

Now to download these I'm getting stuck.

What do i do to start downloading these? I'm embarrassed to put my code for this up cause i'm sure it makes no sense, but here goes.

# where it falls off the rails... i obviously am on the wrong track here...
fn = ("dates")
file = open(dates, "wb")
ftp.retrbinary("RETR %s" + dates, file.write)
Appreciate any help out there!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  list the files using query in python arjunaram 0 675 Mar-28-2023, 02:39 PM
Last Post: arjunaram
  Opinion: how should my scripts cache web download files? stevendaprano 0 732 Dec-17-2022, 12:19 AM
Last Post: stevendaprano
  Download mp4 files from an url q988988 2 6,383 Mar-07-2022, 10:11 AM
Last Post: snippsat
  get all the files in the path in a list? korenron 23 7,100 Jul-19-2021, 07:44 AM
Last Post: korenron
  download with internet download manager coral_raha 0 2,965 Jul-18-2021, 03:11 PM
Last Post: coral_raha
  Put all files in a directory into list. How? Denial 2 2,142 Sep-18-2020, 10:05 PM
Last Post: Larz60+
  How can I download Python files from GitHub? bitcoin10mil 2 2,849 Aug-26-2020, 09:03 PM
Last Post: Axel_Erfurt
  Python - List from csv files Wscwt011 1 1,843 Mar-18-2020, 06:22 PM
Last Post: alpho
  How to list out specific excel files ajay_pal7 2 2,831 Mar-10-2020, 05:43 AM
Last Post: Larz60+
  unable to list files in a directory christober 2 2,055 Sep-18-2019, 11:45 PM
Last Post: wavic

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020