Uploading multiple files

Top  Previous  Next

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

 

Setting your local directory