VB.NET - Use FtpWebRequest to download a file

Rocky Guls replied at 24-Jul-06 10:31
Reason for ur error:
 This response indicates that a remote SMTP Server or client is attempting to conduct a series of SMTP transactions out of sequence. 


Alternate Code:
=========

<PRE lang=vbnet>'Values to use
Const localFile As String = "C:\myfile.bin"
Const remoteFile As String = "/pub/myftpfile.bin"
Const host As String = "ftp://ftp.myhost.com"
Const username As String = "myuserid"
Const password As String = "mypassword"

'1. Create a request: must be in ftp://hostname format, 
'   not just ftp.myhost.com
Dim URI As String = host & remoteFile
Dim ftp As System.Net.FtpWebRequest = _
    CType(FtpWebRequest.Create(URI), FtpWebRequest)

'2. Set credentials
ftp.Credentials = New _
    System.Net.NetworkCredential(username, password)

'3. Settings and action
ftp.KeepAlive = False
'we want a binary transfer, not textual data
ftp.UseBinary = True
'Define the action required (in this case, download a file)
ftp.Method = System.Net.WebRequestMethods.Ftp.DownloadFile

'4. If we were using a method that uploads data e.g. UploadFile
'   we would open the ftp.GetRequestStream here an send the data

'5. Get the response to the Ftp request and the associated stream
Using response As System.Net.FtpWebResponse = _
      CType(ftp.GetResponse, System.Net.FtpWebResponse)
  Using responseStream As IO.Stream = response.GetResponseStream
    'loop to read & write to file
    Using fs As New IO.FileStream(localFile, IO.FileMode.Create)
      Dim buffer(2047) As Byte
      Dim read As Integer = 0
      Do
        read = responseStream.Read(buffer, 0, buffer.Length)
        fs.Write(buffer, 0, read)
      Loop Until read = 0 'see Note(1)
      responseStream.Close()
      fs.Flush()
      fs.Close()
    End Using
    responseStream.Close()
  End Using
  response.Close()
End Using

'6. Done! the Close happens because ftp goes out of scope
'   There is no .Close or .Dispose for FtpWebRequest</PRE>

http://www.codeproject.com/vb/net/FtpClient.asp

HTH

Click here to sign in and reply. You could earn money via our message board contest just for being helpful.
  Download a file on a UNIX FTP Server with VB NET - Nicolas Zenou  24-Jul-06 10:23 10:23:03 AM
      Use FtpWebRequest to download a file - Rocky Guls  24-Jul-06 10:31 10:31:43 AM
          that's ok now! - Nicolas Zenou  24-Jul-06 10:55 10:55:56 AM
View Posts

  

Search

search



Purchase