Example #1
0
        public static IEACTFTP GetFtp(string FtpServerIP, int FtpServerPort, string FtpRemotePath, string FtpUser, string FtpPassword)
        {
            var ftp = new EACTFTP(FtpServerIP, FtpServerPort, FtpRemotePath, FtpUser, FtpPassword);

            return(ftp);
        }
Example #2
0
        public static IEACTFTP GetFtp(string FtpServerIP, string FtpRemotePath, string FtpUserID, string FtpPassword, bool SSL)
        {
            var ftp = new EACTFTP(FtpServerIP, FtpRemotePath, FtpUserID, FtpPassword, SSL);

            return(ftp);
        }