View Single Post
Old 11-28-2005, 02:38 PM  
DYN_DaTa
Senior Member
 
Join Date: Jan 2002
Location: Madrid, Spain
Posts: 346
Default

After a couple of tries i have a little .bat script that works :

Code:
@echo off
cd /D D:
if exist *.csv (goto si) else exit
:si
move /Y *.csv D:\Externos_Temp
cd /D D:\Externos_Temp
ftp -i -s:D:\script.txt
move /Y *.csv D:\Externos_Final
Being script.txt

Code:
open www.some_host.org 2100
some_username
some_password
ascii
mput *.csv
bye
DYN_DaTa is offline