Re: current uploading speed - WeOnlyDo Discussion board

Re: current uploading speed (General questions)

by wodDrazen, Tuesday, July 18, 2006, 09:25 (6513 days ago) @ caiyi000

Hi,


Unfortunately, you cannot get upload speed with wodSFTP.

Only that can help you and maybe solve your problem is Progress Event which is fired during file transfer.
There you can find Position (Current transfer position.) and Total (Total number of bytes that should be transferred).

Here is example which shows how many percentage is currently uploaded:
--------------------------------
Private Sub sftp1_Progress(ByVal Position As Long, ByVal Total As Long)
Debug.Print (Position / Total) * 100
End Sub
--------------------------------

Hope this helps.


Regards,
Drazen


Complete thread: