Difference between revisions of "Using Powershell for ftp 2"
From MyWiki
(Created page with "http://stackoverflow.com/questions/5394090/is-it-possible-to-do-active-mode-ftp-using-ftpwebrequest<br>") |
|||
Line 1: | Line 1: | ||
http://stackoverflow.com/questions/5394090/is-it-possible-to-do-active-mode-ftp-using-ftpwebrequest<br> | http://stackoverflow.com/questions/5394090/is-it-possible-to-do-active-mode-ftp-using-ftpwebrequest<br> | ||
+ | |||
+ | <source lang="powershell"> | ||
+ | |||
+ | // 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. | ||
+ | StreamReader sourceStream = new StreamReader("testfile.txt"); | ||
+ | byte [] fileContents = Encoding.UTF8.GetBytes(sourceStream.ReadToEnd()); | ||
+ | sourceStream.Close(); | ||
+ | request.ContentLength = fileContents.Length; | ||
+ | |||
+ | Stream requestStream = request.GetRequestStream(); | ||
+ | requestStream.Write(fileContents, 0, fileContents.Length); | ||
+ | requestStream.Close(); | ||
+ | |||
+ | FtpWebResponse response = (FtpWebResponse)request.GetResponse(); | ||
+ | response.Close(); | ||
+ | |||
+ | |||
+ | </source> |
Revision as of 18:30, 5 August 2015
http://stackoverflow.com/questions/5394090/is-it-possible-to-do-active-mode-ftp-using-ftpwebrequest
// 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. StreamReader sourceStream = new StreamReader("testfile.txt"); byte [] fileContents = Encoding.UTF8.GetBytes(sourceStream.ReadToEnd()); sourceStream.Close(); request.ContentLength = fileContents.Length; Stream requestStream = request.GetRequestStream(); requestStream.Write(fileContents, 0, fileContents.Length); requestStream.Close(); FtpWebResponse response = (FtpWebResponse)request.GetResponse(); response.Close();