Uploading multiple files |
You can upload multiple files using the Sftp.Mupload method and a wildcard expression. All files will be uploaded from your current local directory.
Example
[C#]
// upload all files ending with .gif extension
sftp.Mupload("*.gif");
[VB]
' upload all files ending with .gif extension
sftp.Mupload("*.gif")
See also