site stats
C# FTP Bağlantısı | C#
Anasayfa  E Ner(E)de ?  Hata Gönder
Loading

C# FTP Bağlantısı

Yazar: Tarih: Ocak 21, 2011 · Yorum Yap  , Kategori: C#
Etiketler: , , ,

Yazmakta fayda var. Kod parçacığı C# ile FTP bağlantısı deneyerek, durumun çıktısını veriyor.

FtpWebRequest baglanti;
baglanti = (FtpWebRequest)WebRequest.Create(new Uri(“ftp://ftp.hatanerde.com/httpdocs/index.php”));
baglanti.UseBinary = true;
baglanti.Credentials = new NetworkCredential(“hatanerde”, “sifre”);
baglanti.Method = WebRequestMethods.Ftp.GetFileSize;
baglanti.UsePassive = true;
FtpWebResponse response = (FtpWebResponse)baglanti.GetResponse();
Response.Write(response.StatusDescription);

Zaman bulunursa geliştirilebilir.