Differences
This shows you the differences between the selected revisions of the page.
2017-10-19 | 2017-10-19 | ||
download_csharp anchor (martin) | hierarchy (martin) | ||
Line 1: | Line 1: | ||
====== Automating transfers in parallel connections over SFTP/FTP protocol ====== | ====== Automating transfers in parallel connections over SFTP/FTP protocol ====== | ||
- | ===== [[download_csharp]] Download (C#) ===== | + | ===== Download ===== |
+ | ==== [[download_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 120: | ||
</code> | </code> | ||
- | ===== Download (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. | ||
Line 278: | Line 279: | ||
</code> | </code> | ||
- | ===== [[upload_csharp]] Upload (C#) ===== | + | ===== Upload ===== |
+ | ==== [[upload_csharp]] C# ==== | ||
The example opens by default three parallel connections and uses them to upload locale file tree to remote folder in parallel. | The example opens by default three parallel connections and uses them to upload locale file tree to remote folder in parallel. |