public virtual void UploadMultiple(
string localDirectory,
string remoteDirectory,
string wildcard,
bool includeSubDirs
)Public Overridable Sub UploadMultiple (
localDirectory As String,
remoteDirectory As String,
wildcard As String,
includeSubDirs As Boolean
)public:
virtual void UploadMultiple(
String^ localDirectory,
String^ remoteDirectory,
String^ wildcard,
bool includeSubDirs
)abstract UploadMultiple :
localDirectory : string *
remoteDirectory : string *
wildcard : string *
includeSubDirs : bool -> unit
override UploadMultiple :
localDirectory : string *
remoteDirectory : string *
wildcard : string *
includeSubDirs : bool -> unit Optionally, all subdirectories can be transferred as well. Note that the wildcard is only applicable to files, not to subdirectories.
Wildcard expression use '?' to match any single character and '*' to match multiple characters. For example, "file*.txt" will match any file-name starting with "file" and having an extension ".txt".
Note that if the LocalDirectory property is set and localDirectory is a relative path, it will be combined with the LocalDirectory to find the target directory.