FTP program

BeeJayEff

Registered User.
Local time
Today, 13:11
Joined
Sep 10, 2013
Messages
198
I guess this isn't strictly an Access question, but hopefully someone here will be able to help. I currently use Filezilla to transfer large numbers of jpg files to an ftp server. This is done by drag-and-dropping the files onto Filezilla.

However, the source URLs are in an Access table, and I suppose I could probably pass them one at a time to Filezilla, but I would far prefer to be able to construct a csv (or similar) file which I can then load into the ftp program. Filezilla does not seem to have any way of supporting that - or can anyone out there advise me otherwise ?

Failing that, can anyone recommend any other ftp programme (preferably free) which will accept a csv or similar file ?
 
I do this by constructing a text file to execute an ftp logon, with all the commands I need

login commands
set folders
put file1
put file2
put file3
logout

then executing this script file

so step though the urls to generate the script, then run the script.

hope this helps
 
Thanks Dave - are you able to do this with Filezilla ?
 
No, I just use native ftp commands to manage the ftp connection.
 

Users who are viewing this thread

Back
Top Bottom