Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
FTP Example Question
Message
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Miscellaneous
Thread ID:
01462731
Message ID:
01462749
Views:
71
>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...
>
>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();  
>        }
>    }
>}
To the console :-}
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform