>백엔드 개발 >C++ >스트리밍을 사용하여 C#에서 FTP를 통해 파일을 업로드하고 다운로드하는 방법은 무엇입니까?

스트리밍을 사용하여 C#에서 FTP를 통해 파일을 업로드하고 다운로드하는 방법은 무엇입니까?

DDD
DDD원래의
2025-01-11 11:10:42474검색

How to Upload and Download Files via FTP in C# Using Streaming?

C#/.NET FTP 파일 업로드 및 다운로드(스트리밍)

업로드

스트림 기반 업로드:

스트리밍을 통해 바이너리를 업로드하려면 FtpWebRequest:

을 사용하세요.
<code class="language-csharp">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);
}</code>

다운로드

스트림 기반 다운로드:

스트리밍 다운로드의 경우 FtpWebRequest:

를 사용하세요.
<code class="language-csharp">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);
}</code>

위 내용은 스트리밍을 사용하여 C#에서 FTP를 통해 파일을 업로드하고 다운로드하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.