You could use the ftp client that is built into windows and it can be run from a batch file while taking commands from a text file. Here is what an ftp transfer.scr file might look like:
user
ntuser
d#ntpr0suser
cd MySQL_Update
lcd FromAccessApp
get AP1_VendorMaster.csv
get Customer_List.csv
The command in a batch file would be:
ftp ftp.somedomain.com -s:transfer.scr
Transfer logs into ftp.somedomain.com as user ntuser with password d#ntpr0suser, changes to the directory MySQL_Update on the ftp server and the FromAccessApp on the local machine, then gets two files.
The batch file can be run by the VI job,