Sftp.GetItems Method
Namespace: Rebex.Net
Assembly: Rebex.Sftp.dll (version 7.0.9083)
GetItems(String)
Retrieves the list of files and directories. Matching directories are searched recursively.
Declaration
public SftpItemCollection GetItems(string remotePath)
Parameters
Type | Name | Description |
---|---|---|
String | remotePath | The path (with or without a mask) to a remote file or directory. |
Returns
Type | Description |
---|---|
SftpItemCollection | Collection of SftpItem values. |
GetItems(String, TraversalMode)
Retrieves the list of files and directories.
Declaration
public SftpItemCollection GetItems(string remotePath, TraversalMode traversalMode)
Parameters
Type | Name | Description |
---|---|---|
String | remotePath | The path (with or without a mask) to a remote file or directory. |
TraversalMode | traversalMode | Specifies how to traverse hierarchy of directories. |
Returns
Type | Description |
---|---|
SftpItemCollection | Collection of SftpItem values. |
GetItems(FileSet)
Retrieves the list of files and directories specified by the set
.
Declaration
public SftpItemCollection GetItems(FileSet set)
Parameters
Type | Name | Description |
---|---|---|
FileSet | set | A filtering set which specifies remote files and directories to be retrieved. |
Returns
Type | Description |
---|---|
SftpItemCollection | Collection of SftpItem values. |