Ejemplo n.º 1
0
        public void AppendInboundMasterControl(FileInfo masterControlFile, string masterControlPath, string masterControlFileName)
        {
            var remotePath = masterControlPath + "/" + masterControlFileName;

            _log.Debug("file upload " + masterControlFile.FullName + " to remote path " + remotePath);
            _ftpClient.Append(masterControlFile, remotePath);
            _log.Info("Successfully appended to master control file.");
        }