LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

transfre files through ftp with touch panel without

How can I transfer files through ftp between Compact field Point (2120) and touch panel (NI TPC-2106T) without internet toolkit?
0 Kudos
Message 1 of 3
(2,586 Views)
Implement your own FTP VI's. See the FTP spec. It's not that hard, but it's
a lot of work.

Regards,

Wiebe.


0 Kudos
Message 2 of 3
(2,501 Views)
If you use VS2005, programming in C# - you can use these functions - (these are over-simplified to access a public ftp site):

(They're more effient, by the way)

    public void upload_file(string source, string destination)
    {
      WebClient upload = new WebClient();

      upload.Credentials = new NetworkCredential("", "");

      upload.UploadFile(destination, source);
    }

    public void download_file(string source, string destination)
    {
      WebClient download = new WebClient();

      download.Credentials = new NetworkCredential("", "");

      download.DownloadFile(source, destination);
    }
0 Kudos
Message 3 of 3
(2,495 Views)