Esempio n. 1
0
        private static void DoAppendFile(FTPSClient client)
        {
            string localPathName  = commandArguments[0];
            string remotePathName = GetRemotePathName(localPathName);

            client.AppendFile(localPathName, remotePathName, new FileTransferCallback(TransferCallback));
        }
Esempio n. 2
0
 private static void DoAppendFile(FTPSClient client)
 {
     string localPathName = commandArguments[0];
     string remotePathName = GetRemotePathName(localPathName);
     client.AppendFile(localPathName, remotePathName, new FileTransferCallback(TransferCallback));
 }