 | FileSystemClientDownloadDirectory(String, String, ProgressCallback) Method |
Downloads the files in the specified directory on the file system.
Namespace: Ookii.Jumbo.Dfs.FileSystemAssembly: Ookii.Jumbo.Dfs (in Ookii.Jumbo.Dfs.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic void DownloadDirectory(
string sourcePath,
string localTargetPath,
ProgressCallback? progressCallback
)
Public Sub DownloadDirectory (
sourcePath As String,
localTargetPath As String,
progressCallback As ProgressCallback
)
public:
void DownloadDirectory(
String^ sourcePath,
String^ localTargetPath,
ProgressCallback^ progressCallback
)
member DownloadDirectory :
sourcePath : string *
localTargetPath : string *
progressCallback : ProgressCallback -> unit
Parameters
- sourcePath String
- The directory on the file system to download.
- localTargetPath String
- The local directory to store the files.
- progressCallback ProgressCallback
- The ProgressCallback that will be called to report progress of the operation. May be .
Remarks
This function is not recursive; it will only download the files that are direct children of the
specified directory.
See Also