当前位置: 首页>>代码示例>>C#>>正文


C# FtpClient.OpenAppend方法代码示例

本文整理汇总了C#中FtpClient.OpenAppend方法的典型用法代码示例。如果您正苦于以下问题:C# FtpClient.OpenAppend方法的具体用法?C# FtpClient.OpenAppend怎么用?C# FtpClient.OpenAppend使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在FtpClient的用法示例。


在下文中一共展示了FtpClient.OpenAppend方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: OpenAppend

 public static void OpenAppend() {
     using (FtpClient conn = new FtpClient()) {
         conn.Host = "localhost";
         conn.Credentials = new NetworkCredential("ftptest", "ftptest");
         
         using (Stream ostream = conn.OpenAppend("/full/or/relative/path/to/file")) {
             try {
                 // be sure to seek your output stream to the appropriate location, i.e., istream.Position
                 // istream.Position is incremented accordingly to the writes you perform
                 // istream.Position == file size if the server supports getting the file size
                 // also note that file size for the same file can vary between ASCII and Binary
                 // modes and some servers won't even give a file size for ASCII files! It is
                 // recommended that you stick with Binary and worry about character encodings
                 // on your end of the connection.
             }
             finally {
                 ostream.Close();
             }
         }
     }
 }
开发者ID:fanpan26,项目名称:Macrosage.Wx,代码行数:21,代码来源:OpenAppend.cs

示例2: UploadBackupFile

        private void UploadBackupFile(FtpClient ftpClient, string ftpBackupPath, string backupFilePath)
        {
            Stream ftpBackupFile;
              long totalBytesWritten = 0;

              var backupFilename = Path.GetFileName(backupFilePath);

              var ftpBackupFilePath = ftpBackupPath + "/" + backupFilename;

              if (ftpClient.FileExists(ftpBackupFilePath))
              {
            var ftpBackupFileSize = ftpClient.GetFileSize(ftpBackupFilePath);

            totalBytesWritten = ftpBackupFileSize;

            ftpBackupFile = ftpClient.OpenAppend(ftpBackupPath + "/" + backupFilename, FtpDataType.Binary);
              }
              else
              {
            ftpBackupFile = ftpClient.OpenWrite(ftpBackupPath + "/" + backupFilename, FtpDataType.Binary);
              }

              try
              {
            using (var backupFile = File.OpenRead(backupFilePath))
            {
              int bytesRead;
              var totalBytes = backupFile.Length;
              var bytesWrittenLogPoint = 0.1;

              var buffer = new byte[4096];

              _log.Info(string.Format("Uploading {0} ({1:N0} bytes)...", backupFilename, totalBytes));

              if (totalBytesWritten > 0)
            backupFile.Seek(totalBytesWritten, SeekOrigin.Begin);

              while ((bytesRead = backupFile.Read(buffer, 0, buffer.Length)) > 0)
              {
            ftpBackupFile.Write(buffer, 0, bytesRead);

            totalBytesWritten += bytesRead;

            var writtenBytesPercentage = ((float)totalBytesWritten / totalBytes);

            if (writtenBytesPercentage >= bytesWrittenLogPoint)
            {
              _log.Info(
                string.Format(
                  "Backup file upload progress: {0:P} ({1:N0} bytes) of {2}.",
                  writtenBytesPercentage,
                  totalBytesWritten,
                  backupFilename));

              bytesWrittenLogPoint += 0.1;
            }
              }
            }
              }
              finally
              {
            ftpBackupFile.Dispose();
              }
        }
开发者ID:eranbetzalel,项目名称:SimpleBackup,代码行数:64,代码来源:BackupStorageService.cs


注:本文中的FtpClient.OpenAppend方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。