|
Dim $date
Dim $ip
$date = InputBox("Please input Date","yymd",""," 6")
$ip = InputBox("Please input ipaddress","ipaddress")
Run ("ftp.exe "&$ip)
sleep (1000)
Send ("user")
sleep (1000)
send ("{ENTER}")
sleep (1000)
send ("pwd")
sleep (1000)
send ("{ENTER}")
sleep (2000)
send ("cd replication")
sleep (2000)
send ("{ENTER}")
sleep (2000)
send ("get rsync_logs_"&$date&" d:\ftp\"&$date&"_"&$ip&".txt")
sleep (2000)
send ("{ENTER}")
sleep (2000)
Send ("quit")
sleep (5000)
MsgBox (0, "OK","Finished")
上面这段代码是要在某个FTP上自动下载到本地的。
自己看来都比较蠢:(
1. 想问问高手有什么别的方法。
2. 想问问有没有办法让这段代码是在后台运行的,也就是说是看不出来的。
先谢谢了__
[ 本帖最后由 davydavid 于 2008-11-23 13:36 编辑 ] |
|