Page 1 of 1

File copy via FTP

Posted: Thu Dec 22, 2011 5:37 am
by Hi-Volt
Hi. I need to copy some files from a iX panel TA100 (\FlashDrive\Project\Project Files\MyFile) to a remote computer via ftp. Unfortunately the .NET Compact Framework doesn't include this functionality. I tried to use a third-party library (.dll) but it doesn't work fine.
Could you help me please?
Thank you!

Re: File copy via FTP

Posted: Thu Dec 22, 2011 10:03 am
by Ron L.
I'm assuming your talking about the scenario where the panel is an FTP client. I will send a sample project that uses a 3rd party library.

Re: File copy via FTP

Posted: Fri Dec 23, 2011 2:11 am
by Hi-Volt
Hi. Yes, the panel is an FTP client.
Thank you!
Best regards!

Re: File copy via FTP

Posted: Tue Mar 19, 2013 9:35 am
by jmsmoreira
Can you send me the example too?
I'm trying to do something similar...

Re: File copy via FTP

Posted: Thu May 29, 2014 3:46 am
by JohnCZ
Dear all,

I have problem with FTP client on T4A. Simpl code that works in previous version is not working in new version of iX Dev 2.1. SP1. I just convert it and following problem shows that System.Net,FtpClient.dll is missing.

Code: Select all

FtpClient ftp = new FtpClient(FtpServer,FtpUserName,FtpPassword);
ftp.Login();
ftpClient.download(@"C:\Users\admin\Desktop\DataT4A.csv", @"\FlashDrive\Project\Project Files\DatabaseExport\Data Loggers\DataLog1.csv");
ftp.Close();
BR
JohnCZ