1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(myCertificateValidation);
FtpWebRequest req = (FtpWebRequest)WebRequest.Create("ftp://127.0.0.1/nomdufichier.xml");
req.EnableSsl = true;
req.Credentials = new NetworkCredential("login", "pwd");
req.Method = WebRequestMethods.Ftp.DownloadFile;
req.Proxy = null;
try
{
FtpWebResponse resp = (FtpWebResponse)req.GetResponse();
FileStream fs;
Stream s;
s = resp.GetResponseStream();
int ByteAsInteger;
ByteAsInteger = s.ReadByte();
while (ByteAsInteger >= 0)
{
ByteAsInteger = s.ReadByte();
fs.WriteByte(ByteAsInteger); ????
}
}
catch (Exception error)
{
MessageBox.Show(error.Message);
} |