Downloading multiple files |
You can download multiple files using the Sftp.Mdownload method along with a regular expression. All files will be downloaded relative to your current remote directory.
Example
[C#]
// download all files ending with .gif extension
sftp.Mdownload("*.gif");
[VB]
' download all files ending with .gif extension
sftp.Mdownload("*.gif")
See also