Click or drag to resize

FileSystemClientDownloadDirectory Method (String, String, ProgressCallback)

Downloads the files in the specified directory on the file system.

Namespace:  Ookii.Jumbo.Dfs.FileSystem
Assembly:  Ookii.Jumbo.Dfs (in Ookii.Jumbo.Dfs.dll) Version: 2.0.0
Syntax
public void DownloadDirectory(
	string sourcePath,
	string localTargetPath,
	ProgressCallback progressCallback
)

Parameters

sourcePath
Type: SystemString
The directory on the file system to download.
localTargetPath
Type: SystemString
The local directory to store the files.
progressCallback
Type: Ookii.Jumbo.DfsProgressCallback
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