Jump to content

Recommended Posts

Posted
Hi All, Happy New Year. I am trying to create an FTP link to the Data Log files stored on an NS Memory Card. Currently I am unable to navigate to the folder 'ftp://192.168.1.15/at0' via the windows explorer, although I can using ftp via the command line. When I try this via Windows exporer I get the error per attached screenshot - not sure why it adds the /fr1 to the path? Thanks, Nibroc

Posted
Thanks Jay, I did have the .pdf data but not the .ppt. I ultimately wish to put a shortcut on the desktop to open: ftp://192.168.1.15/at0/log/trend/heating This will allow my customer to open the shortcut and copy the log files. However, the ftp defaults to the /fr1 folder and does not allow Windows explorer to navigate to the above? I can navigate to the log folders using command line ftp, but not windows explorer. Is there a way I can add a shortcut to the log file folders - (do I need to use a third party FTP client?) Thanks,
Posted
Gonna work on the same issue this week. I have the same need, but I need to do it automatically.
Posted (edited)
Example Batch File: @echo off echo user default> ftpcmd.dat echo default>> ftpcmd.dat echo bin>> ftpcmd.dat echo lcd DESTINATION_FOLDER>> ftpcmd.dat echo cd /at0/log/Trend/Trd00>> ftpcmd.dat echo mget *.csv>> ftpcmd.dat echo quit>> ftpcmd.dat>> ftpcmd.dat ftp -n -s:ftpcmd.dat -i IP_ADDRESS del ftpcmd.dat The items in italics/bold need to be changed to your destination path & IP Address. Edited by lostcontrol

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...