web-dev-qa-db-ja.com

C#/。NETのFTPサーバーとの間でバイナリファイルをアップロードおよびダウンロードします

.NET 4 C#を使用しています。 Zipファイルを(自分の)サーバーにアップロードしてからダウンロードしようとしています。

アップロードするために私は持っています

using (WebClient client = new WebClient())
{
    FtpWebRequest request = (FtpWebRequest)WebRequest.Create(MyUrl);
    request.Method = WebRequestMethods.Ftp.UploadFile;
    request.EnableSsl = false;
    request.Credentials = new NetworkCredential(MyLogin, MyPassword);
    byte[] fileContents = null;
    using (StreamReader sourceStream = new StreamReader(LocalFilePath))
    {
        fileContents = Encoding.UTF8.GetBytes(sourceStream.ReadToEnd());
    }
    request.ContentLength = fileContents.Length;
    using (Stream requestStream = request.GetRequestStream())
    {
        requestStream.Write(fileContents, 0, fileContents.Length);
    }
    FtpWebResponse response = null;
    response = (FtpWebResponse)request.GetResponse();
    response.Close();
}

これは、適切なサイズのファイルをサーバー上に取得するという点で機能しているようです。

1)最初にメモリにロードするのではなく、どのようにストリーミングしますか?非常に大きなファイルをアップロードします。

そしてダウンロードのために私は持っています

using (WebClient client = new WebClient())
{
    string HtmlResult = String.Empty;
    FtpWebRequest request = (FtpWebRequest)WebRequest.Create(remoteFile);
    request.Method = WebRequestMethods.Ftp.DownloadFile;
    request.EnableSsl = false;
    request.Credentials = new NetworkCredential(MyLogin, MyPassword);
    using (FtpWebResponse response = (FtpWebResponse)request.GetResponse())
    using (Stream responseStream = response.GetResponseStream())
    using (StreamReader reader = new StreamReader(responseStream))
    using (FileStream writer = new FileStream(localFilename, FileMode.Create))
    {
        long length = response.ContentLength;
        int bufferSize = 2048;
        int readCount;
        byte[] buffer = new byte[2048];
        readCount = responseStream.Read(buffer, 0, bufferSize);
        while (readCount > 0)
        {
            writer.Write(buffer, 0, readCount);
            readCount = responseStream.Read(buffer, 0, bufferSize);
        }
    }
}

2)すべてが機能しているようです...ダウンロードしたZipファイルを解凍しようとすると、無効なZipファイルが表示されます。

5
jo phul

アップロード

.NETフレームワークを使用してバイナリファイルをFTPサーバーにアップロードする最も簡単な方法は、 WebClient.UploadFile を使用することです。

WebClient client = new WebClient();
client.Credentials = new NetworkCredential("username", "password");
client.UploadFile("ftp://ftp.example.com/remote/path/file.Zip", @"C:\local\path\file.Zip");

より高度な制御が必要な場合は、WebClientが提供しない( TLS/SSL暗号化 など)場合は、 FtpWebRequest を使用します。簡単な方法は、 Stream.CopyTo を使用してFileStreamをFTPストリームにコピーすることです。

FtpWebRequest request =
    (FtpWebRequest)WebRequest.Create("ftp://ftp.example.com/remote/path/file.Zip");
request.Credentials = new NetworkCredential("username", "password");
request.Method = WebRequestMethods.Ftp.UploadFile;  

using (Stream fileStream = File.OpenRead(@"C:\local\path\file.Zip"))
using (Stream ftpStream = request.GetRequestStream())
{
    fileStream.CopyTo(ftpStream);
}

アップロードの進行状況を監視する必要がある場合は、コンテンツをチャンクごとに自分でコピーする必要があります。

FtpWebRequest request =
    (FtpWebRequest)WebRequest.Create("ftp://ftp.example.com/remote/path/file.Zip");
request.Credentials = new NetworkCredential("username", "password");
request.Method = WebRequestMethods.Ftp.UploadFile;  

using (Stream fileStream = File.OpenRead(@"C:\local\path\file.Zip"))
using (Stream ftpStream = request.GetRequestStream())
{
    byte[] buffer = new byte[10240];
    int read;
    while ((read = fileStream.Read(buffer, 0, buffer.Length)) > 0)
    {
        ftpStream.Write(buffer, 0, read);
        Console.WriteLine("Uploaded {0} bytes", fileStream.Position);
    } 
}

GUIの進行状況(WinForms ProgressBar)については、以下を参照してください。
FtpWebRequestを使用してアップロードの進行状況バーを表示するにはどうすればよいですか

フォルダからすべてのファイルをアップロードする場合は、を参照してください。
WebClientを使用してファイルのディレクトリをアップロード


ダウンロード

.NETフレームワークを使用してFTPサーバーからバイナリファイルをダウンロードする最も簡単な方法は、 WebClient.DownloadFile を使用することです。

WebClient client = new WebClient();
client.Credentials = new NetworkCredential("username", "password");
client.DownloadFile(
    "ftp://ftp.example.com/remote/path/file.Zip", @"C:\local\path\file.Zip");

より高度な制御が必要な場合は、WebClientが提供しない( TLS/SSL暗号化 など)場合は、 FtpWebRequest を使用します。簡単な方法は、 Stream.CopyTo を使用してFTP応答ストリームをFileStreamにコピーすることです。

FtpWebRequest request =
    (FtpWebRequest)WebRequest.Create("ftp://ftp.example.com/remote/path/file.Zip");
request.Credentials = new NetworkCredential("username", "password");
request.Method = WebRequestMethods.Ftp.DownloadFile;

using (Stream ftpStream = request.GetResponse().GetResponseStream())
using (Stream fileStream = File.Create(@"C:\local\path\file.Zip"))
{
    ftpStream.CopyTo(fileStream);
}

ダウンロードの進行状況を監視する必要がある場合は、コンテンツをチャンクごとに自分でコピーする必要があります。

FtpWebRequest request =
    (FtpWebRequest)WebRequest.Create("ftp://ftp.example.com/remote/path/file.Zip");
request.Credentials = new NetworkCredential("username", "password");
request.Method = WebRequestMethods.Ftp.DownloadFile;

using (Stream ftpStream = request.GetResponse().GetResponseStream())
using (Stream fileStream = File.Create(@"C:\local\path\file.Zip"))
{
    byte[] buffer = new byte[10240];
    int read;
    while ((read = ftpStream.Read(buffer, 0, buffer.Length)) > 0)
    {
        fileStream.Write(buffer, 0, read);
        Console.WriteLine("Downloaded {0} bytes", fileStream.Position);
    }
}

GUIの進行状況(WinForms ProgressBar)については、以下を参照してください。
ProgressBarを使用したFtpWebRequest FTPダウンロード

リモートフォルダからすべてのファイルをダウンロードする場合は、を参照してください。
C#FTP経由ですべてのファイルとサブディレクトリをダウンロード

12
Martin Prikryl