Using Powershell for ftp 2

From MyWiki
Revision as of 18:31, 5 August 2015 by George2 (Talk | contribs)

Jump to: navigation, search

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");
request.UsePassive = false;      //////// ADDed this but not tested
 
// 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();