I wrote a simple batch file to take backups of a multi robot cell thru FTP, inspired by https://www.onerobotics.com/posts/2013/usi…e-productivity/
It works great however it takes about 30min to pull a backup from all 6 robots in this cell. Is there any simple way to speed this up or things to look for that could be slowing it down?
Batch File goes like this, repeated for each robot:
open #IPAddr
anon
prompt
bin
lcd U:\_RobBackups\Station_1
mget *.*
quit
Thanks!