Differences
This shows you the differences between the selected revisions of the page.
2017-10-03 | 2017-10-19 | ||
code wrapping for new design (martin) | syntax (martin) | ||
Line 1: | Line 1: | ||
====== Automating download in parallel connections over SFTP/FTP protocol ====== | ====== Automating download in parallel connections over SFTP/FTP protocol ====== | ||
- | ===== [[csharp]] C# ==== | + | ===== [[csharp]] C# ===== |
The example opens by default three parallel connections and uses them to download remote file tree to local folder in parallel. | The example opens by default three parallel connections and uses them to download remote file tree to local folder in parallel. | ||
Line 119: | Line 119: | ||
</code> | </code> | ||
- | ===== PowerShell ==== | + | ===== PowerShell ===== |
The code is not equivalent to the C# example above. The PowerShell code does not download subdirectories. It also split the files to batches by their count only, instead of using a queue like the C# code. | The code is not equivalent to the C# example above. The PowerShell code does not download subdirectories. It also split the files to batches by their count only, instead of using a queue like the C# code. |