本文整理汇总了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();
}
}
}
}
示例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();
}
}