Uploading multiple files |
You can upload multiple files using the MUpload method and a wildcard expression. Standard wildcards ? and * are supported. All matching files will be uploaded from your current local directory.
Example
[C#]
// upload all JPG/JPEG files in current local directory
myFtp.MUpload("*.jp*");
[Visual Basic]
' upload all JPG/JPEG files in current local directory
myFtp.MUpload("*.jp*")
See also