Not
Bu sayfaya erişim yetkilendirme gerektiriyor. Oturum açmayı veya dizinleri değiştirmeyi deneyebilirsiniz.
Bu sayfaya erişim yetkilendirme gerektiriyor. Dizinleri değiştirmeyi deneyebilirsiniz.
Bu örnek, bir dosyanın FTP sunucusuna nasıl yüklendiğini gösterir.
Not
Bu makale .NET Framework'ün hedef olduğu projelere özgüdür. .NET 6 ve sonraki sürümleri hedefleyen projeler için FTP artık desteklenmiyor.
Örnek
using System;
using System.IO;
using System.Net;
using System.Threading.Tasks;
namespace Examples.System.Net
{
public class WebRequestGetExample
{
public static async Task Main()
{
// Get the object used to communicate with the server.
FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://www.contoso.com/test.htm");
request.Method = WebRequestMethods.Ftp.UploadFile;
// This example assumes the FTP site uses anonymous logon.
request.Credentials = new NetworkCredential("anonymous", "janeDoe@contoso.com");
// Copy the contents of the file to the request stream.
using (FileStream fileStream = File.Open("testfile.txt", FileMode.Open, FileAccess.Read))
{
using (Stream requestStream = request.GetRequestStream())
{
await fileStream.CopyToAsync(requestStream);
using (FtpWebResponse response = (FtpWebResponse)request.GetResponse())
{
Console.WriteLine($"Upload File Complete, status {response.StatusDescription}");
}
}
}
}
}
}
Imports System.IO
Imports System.Net
Namespace Examples.System.Net
Public Module WebRequestGetExample
Public Sub Main()
' Get the object used to communicate with the server.
Dim request As FtpWebRequest = CType(WebRequest.Create("ftp://www.contoso.com/test.htm"), FtpWebRequest)
request.Method = WebRequestMethods.Ftp.UploadFile
' This example assumes the FTP site uses anonymous logon.
request.Credentials = New NetworkCredential("anonymous", "janeDoe@contoso.com")
' Copy the contents of the file to the request stream.
Using fileStream As FileStream = File.Open("testfile.txt", FileMode.Open, FileAccess.Read),
requestStream As Stream = request.GetRequestStream()
fileStream.CopyTo(requestStream)
End Using
Using response As FtpWebResponse = CType(request.GetResponse(), FtpWebResponse)
Console.WriteLine($"Upload File Complete, status {response.StatusDescription}")
End Using
End Sub
End Module
End Namespace
GitHub'da bizimle işbirliği yapın
Bu içeriğin kaynağı GitHub'da bulunabilir; burada ayrıca sorunları ve çekme isteklerini oluşturup gözden geçirebilirsiniz. Daha fazla bilgi için katkıda bulunan kılavuzumuzu inceleyin.