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!
File copy via FTP
Re: File copy via FTP
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.
Best Regards,
Beijer Electronics, Inc.
Ron Lloyd | Applications Engineer
Beijer Electronics, Inc.
Ron Lloyd | Applications Engineer
Re: File copy via FTP
Hi. Yes, the panel is an FTP client.
Thank you!
Best regards!
Thank you!
Best regards!
-
- Posts: 28
- Joined: Mon Apr 23, 2012 7:03 am
Re: File copy via FTP
Can you send me the example too?
I'm trying to do something similar...
I'm trying to do something similar...
Re: File copy via FTP
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.
BR
JohnCZ
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();
JohnCZ