>백엔드 개발 >C++ >C#/.NET을 사용하여 FTP 서버에서 파일을 업로드하고 다운로드하는 방법은 무엇입니까?

C#/.NET을 사용하여 FTP 서버에서 파일을 업로드하고 다운로드하는 방법은 무엇입니까?

Susan Sarandon
Susan Sarandon원래의
2025-01-11 11:14:44616검색

How to Upload and Download Files to/from FTP Servers using C#/.NET?

C#/.NET의 FTP 서버에서 파일 업로드 및 다운로드

파일 업로드

파일을 업로드하려면 FTP 서버에 연결하려면 WebClient.UploadFile 또는 FtpWebRequest를 사용할 수 있습니다. WebClient를 사용하려면 FTP URL과 로컬 파일 경로를 제공하기만 하면 됩니다.

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");

더 많은 제어를 원할 경우 FtpWebRequest를 사용하세요.

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);
}

파일 다운로드

FTP 서버에서 파일을 다운로드하려면 WebClient.DownloadFile 또는 FtpWebRequest를 사용하세요. WebClient를 사용하려면 FTP URL과 로컬 파일 경로를 제공하세요.

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");

더 세밀하게 제어하려면 FtpWebRequest를 사용하세요.

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);
}

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

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