Differences

This shows you the differences between the selected revisions of the page.

library_session_filetransferprogress 2015-10-15 library_session_filetransferprogress 2024-09-12 (current)
Line 1: Line 1:
====== Session.FileTransferProgress Event ====== ====== Session.FileTransferProgress Event ======
-Occurs during file tranfer to report transfer progress. Occurs as part of either ''[[library_session_getfiles|Session.GetFiles]]'', ''[[library_session_putfiles|Session.PutFiles]]'' or ''[[library_session_synchronizedirectories|Session.SynchronizeDirectories]]''.+Occurs during file transfer to report transfer progress. Occurs as part of either ''[[library_session_getfiles|Session.GetFiles]]'', ''[[library_session_putfiles|Session.PutFiles]]'' (and other derived download and upload methods) or ''[[library_session_synchronizedirectories|Session.SynchronizeDirectories]]''.
===== Syntax ===== ===== Syntax =====
<code csharp *> <code csharp *>
-public delegate void FileTransferProgressEventHandler(object sender, FileTransferProgressEventArgs e);+public delegate void FileTransferProgressEventHandler( 
 +····object sender, 
 + ···FileTransferProgressEventArgs e 
 +);
public event FileTransferredEventHandler FileTransferred; public event FileTransferredEventHandler FileTransferred;
</code> </code>
Line 11: Line 14:
<code vbnet *> <code vbnet *>
Public Delegate Sub FileTransferProgressEventHandler( Public Delegate Sub FileTransferProgressEventHandler(
-    ByVal sender As Object, ByVal e As FileTransferProgressEventArgs)+    sender As Object, 
 + ···e As FileTransferProgressEventArgs 
 +)
Public Custom Event FileTransferred As FileTransferredEventHandler Public Custom Event FileTransferred As FileTransferredEventHandler
</code> </code>
Line 19: Line 24:
The event is raised, when starting transfer of every file, and then at most once a second for duration of the transfer. The event is raised, when starting transfer of every file, and then at most once a second for duration of the transfer.
 +
 +The event has to be subscribed before calling ''[[library_session_open|Open]]''.
See also ''[[library_session_filetransferred|Session.FileTransferred]]''. See also ''[[library_session_filetransferred|Session.FileTransferred]]''.
===== [[example]] Examples ===== ===== [[example]] Examples =====
 +
==== [[csharp]] C# Example ==== ==== [[csharp]] C# Example ====
<code csharp> <code csharp>
Line 41: Line 49:
                UserName = "user",                 UserName = "user",
                Password = "mypassword",                 Password = "mypassword",
-                SshHostKeyFingerprint = "ssh-rsa 2048 xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx"+                SshHostKeyFingerprint = "ssh-rsa 2048 xxxxxxxxxxx..."
            };             };
Line 55: Line 63:
                {                 {
                    // Download files and throw on any error                     // Download files and throw on any error
-                    session.GetFiles("/home/martin/public_html/*", "d:\\backup\\").Check();+                    session.GetFiles("/home/martin/public_html/*", @"d:\backup\").Check();
                }                 }
                finally                 finally
Line 76: Line 84:
    }     }
-    private static void SessionFileTransferProgress(object sender, FileTransferProgressEventArgs e)+    private static void SessionFileTransferProgress( 
 +········object sender, FileTransferProgressEventArgs e)
    {     {
        // New line for every new file         // New line for every new file
Line 97: Line 106:
==== [[vbnet]] VB.NET Example ==== ==== [[vbnet]] VB.NET Example ====
<code vbnet> <code vbnet>
-Imports System 
Imports WinSCP Imports WinSCP
Line 106: Line 114:
        Try         Try
            ' Setup session options             ' Setup session options
-            Dim mySessionOptions As New SessionOptions +            Dim sessionOptions As New SessionOptions 
-            With mySessionOptions+            With sessionOptions
                .Protocol = Protocol.Sftp                 .Protocol = Protocol.Sftp
                .HostName = "example.com"                 .HostName = "example.com"
                .UserName = "user"                 .UserName = "user"
                .Password = "mypassword"                 .Password = "mypassword"
-                .SshHostKeyFingerprint = "ssh-rsa 2048 xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx"+                .SshHostKeyFingerprint = "ssh-rsa 2048 xxxxxxxxxxx..."
            End With             End With
-            Using mySession As Session = New Session+            Using session As New Session
                ' Will continuously report progress of transfer                 ' Will continuously report progress of transfer
-                AddHandler mySession.FileTransferProgress, AddressOf SessionFileTransferProgress+                AddHandler session.FileTransferProgress, AddressOf SessionFileTransferProgress
                ' Connect                 ' Connect
-                mySession.Open(mySessionOptions)+                session.Open(sessionOptions)
                Try                 Try
                    ' Download files and throw on any error                     ' Download files and throw on any error
-                    mySession.GetFiles( _+                    session.GetFiles( _
                        "/home/martin/public_html/*", "d:\backup\").Check()                         "/home/martin/public_html/*", "d:\backup\").Check()
                Finally                 Finally
Line 143: Line 151:
    Private Shared Sub SessionFileTransferProgress(     Private Shared Sub SessionFileTransferProgress(
-            ByVal sender As Object, ByVal e As FileTransferProgressEventArgs)+            sender As Object, e As FileTransferProgressEventArgs)
        ' New line for every new file         ' New line for every new file
        If (_lastFileName IsNot Nothing) AndAlso (_lastFileName <> e.FileName) Then         If (_lastFileName IsNot Nothing) AndAlso (_lastFileName <> e.FileName) Then
Line 193: Line 201:
try try
{ {
-    $sessionOptions = New-Object WinSCP.SessionOptions +    $sessionOptions = New-Object WinSCP.SessionOptions -Property @{ 
- ···$sessionOptions.Protocol = [WinSCP.Protocol]::Sftp +········Protocol = [WinSCP.Protocol]::Sftp 
-   $sessionOptions.HostName = "example.com" + ·······HostName = "example.com" 
-   $sessionOptions.UserName = "user" + ·······UserName = "user" 
-   $sessionOptions.Password = "mypassword" + ·······Password = "mypassword" 
-   $sessionOptions.SshHostKeyFingerprint = "ssh-rsa 2048 xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx"+ ·······SshHostKeyFingerprint = "ssh-rsa 2048 xxxxxxxxxxx..." 
 +    }
    $session = New-Object WinSCP.Session     $session = New-Object WinSCP.Session
Line 226: Line 235:
    exit 0     exit 0
} }
-catch [Exception]+catch
{ {
-    Write-Host $_.Exception.Message+    Write-Host "Error: $($_.Exception.Message)"
    exit 1     exit 1
} }
</code> </code>
 +
 +If you want a pseudo-GUI progress bar, you can make use of ''[[ps>microsoft.powershell.utility/write-progress|Write-Progress]]'' cmdlet:
 +
 +<code powershell>
 +function FileTransferProgress
 +{
 +    param($e)
 +
 +    Write-Progress `
 +        -Activity "Uploading" -Status ("{0:P0} complete:" -f $e.OverallProgress) `
 +        -PercentComplete ($e.OverallProgress * 100)
 +    Write-Progress `
 +        -Id 1 -Activity $e.FileName -Status ("{0:P0} complete:" -f $e.FileProgress) `
 +        -PercentComplete ($e.FileProgress * 100)
 +}
 +</code>
 +
 +==== Real-Life Example ====
 +
 +  * [[library_example_winforms_progressbar|*]].
 +

Last modified: by martin