파일 업로드
파일을 업로드하려면 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!