04-13-2006 11:38 AM
04-13-2006 12:10 PM
04-13-2006 01:25 PM
An FTP client will work just fine. I use WS-FTP to access my 2 RTOS systems. I am able to poke around their local drives while there are vi's running, and passing data back and forth, on all 3 of my machines. All I had to do was configure WS-FTP with the IP addresses of my two RTOS systems and I was in.
Good Luck
04-13-2006 02:12 PM - edited 04-13-2006 02:12 PM
Message Edited by Sima on 04-13-2006 02:13 PM
04-18-2006 04:02 AM
I used the windows build in ftp client that I call with systemexe.vi
one cmd file: BDSdownload.cmd with the line
----------
ftp -s:C:\<YOURPATH>\dl.asc
------------
and the dl.asc:
---------
open <your_IP_adress>
ls
cd NI-RT
cd STARTUP
get bdsstat.ini
prompt
mget *.txt
bye
--------
The two CR/LF after open are for user and pwd . (I had a direct connection, so no pwd was set)
It worked fine for me, I had no problems with caching...
if you add a mdelete *.TXT after mget you can also clean up your data ( but a mdelete *.* in the startup dir is not recommended
)
04-18-2006 04:52 AM
that's exactlyy what I have finally done!!!!
But thanks a lot for your Help!