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