I am using the following code located here to upload files
Public Function UploadFile(ByVal oFile As FileInfo) As Boolean
Dim ftpRequest As FtpWebRequest
Dim ftpResponse As FtpWebResponse
Try
ftpRequest = CType(FtpWebRequest.Create(FTPSite + CurrentDirectory + oFile.Name), _
FtpWebRequest)
ftpRequest.Method = WebRequestMethods.Ftp.UploadFile
ftpRequest.Proxy = Nothing
ftpRequest.UseBinary = True
ftpRequest.Credentials = New NetworkCredential(UserName, Password)
ftpRequest.KeepAlive = KeepAlive
ftpRequest.EnableSsl = UseSSL
If UseSSL Then ServicePointManager.ServerCertificateValidationCallback = _
New RemoteCertificateValidationCallback(AddressOf ValidateServerCertificate)
Dim fileContents(oFile.Length) As Byte
Using fr As FileStream = oFile.OpenRead
fr.Read(fileContents, 0, Convert.ToInt32(oFile.Length))
End Using
Using writer As Stream = ftpRequest.GetRequestStream
writer.Write(fileContents, 0, fileContents.Length)
End Using
ftpResponse = CType(ftpRequest.GetResponse, FtpWebResponse)
ftpResponse.Close()
ftpRequest = Nothing
Return True
Catch ex As WebException
Return False
End Try
End Function
I would like to extend it, so i can have an upload progress too. The problem is that i do not know from where to start. What is the "logic" of displaying the upload progress?
"Split the file" in predefined parts and upload them or what?
I'm not sure if this code is running on a windows form or web page, which would make a difference in how you actually show the progress. But either way, you'd first want this method to report the progress on how far it is.
To do so, the best bet is to use events. Here is what you would need to add to this class and function:
First a class holding the Percentage:
Next, you'll want to add an event to the class that UpLoadFile belongs to:
Finally in, UpLoadFile, you'll want to raise this event:
Where ever you are calling this from, you can listen for the event: