Example script to send files to FTP Using Curl.exe in Aiolos\Utils folder

rem Send individual files:

rem curl -u UserName:Password -T fileName.dat ftp://ftp.HostName.com

rem Send multiple files to FTP server ftp.HostName.com, login user:MrUser and Password:Secret

rem for %%f in (C:\Aiolos\Export\*.dat) do curl -u UserName:Password -T %%f ftp://ftp.HostName.com

--------------------------------------------------

Set SOURCE=A

set USER=X

set PASS=Y

set SERVER=ftp://Z

set CURL="C:\Aiolos\Utils\cUrl\cUrl.exe"

for %%f in (%SOURCE%) do %CURL% -u %USER%:%PASS% -T %%f %SERVER%