Uploads multiple files matching filter to SSH server's current directory.
Uploads are performed relative to current local directory. Wildcards
may be used to specify multiple files e.g. *.txt
Namespace: Jscape.ScpAssembly: Jscape.Ssh (in Jscape.Ssh.dll) Version: 2.7.2.0
Syntax
C# |
---|
public void Mupload(
string remoteDir,
string filter,
RegexOptions options
) |
Visual Basic |
---|
Public Sub Mupload ( _
remoteDir As String, _
filter As String, _
options As RegexOptions _
) |
Visual C++ |
---|
public:
void Mupload(
String^ remoteDir,
String^ filter,
RegexOptions options
) |
Parameters
- remoteDir
- Type: System..::..String
emote directory path with ending path separator (i.e "/user/home/")
or empty line for current directory
- filter
- Type: System..::..String
the filter to use
- options
- Type: System.Text.RegularExpressions..::..RegexOptions
the values to use to set regular expression options.
See Also