Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
FTP Example Question
Message
Information générale
Forum:
ASP.NET
Catégorie:
Code, syntaxe and commandes
Divers
Thread ID:
01462731
Message ID:
01462748
Vues:
59
>I'm lookoing at this example on MSDN on how to FTP download a file. I don't see where the file is downloaded to...


It's displayed on the console

>This is the page and the code
>http://msdn.microsoft.com/en-us/library/ms229711(VS.90).aspx
>
>using System;
>using System.IO;
>using System.Net;
>using System.Text;
>
>namespace Examples.System.Net
>{
>    public class WebRequestGetExample
>    {
>        public static void 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.DownloadFile;
>
>            // This example assumes the FTP site uses anonymous logon.
>            request.Credentials = new NetworkCredential ("anonymous","janeDoe@contoso.com");
>
>            FtpWebResponse response = (FtpWebResponse)request.GetResponse();
>    
>            Stream responseStream = response.GetResponseStream();
>            StreamReader reader = new StreamReader(responseStream);
>            Console.WriteLine(reader.ReadToEnd());
>
>            Console.WriteLine("Download Complete, status {0}", response.StatusDescription);
>    
>            reader.Close();
>            response.Close();  
>        }
>    }
>}
Gregory
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform