  | FileSystemClientUploadDirectory(String, String) Method | 
            Uploads the files in the specified directory to the file system.
            
Namespace: Ookii.Jumbo.Dfs.FileSystemAssembly: Ookii.Jumbo.Dfs (in Ookii.Jumbo.Dfs.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic void UploadDirectory(
	string localSourcePath,
	string targetPath
)
Public Sub UploadDirectory ( 
	localSourcePath As String,
	targetPath As String
)
public:
void UploadDirectory(
	String^ localSourcePath, 
	String^ targetPath
)
member UploadDirectory : 
        localSourcePath : string * 
        targetPath : string -> unit Parameters
- localSourcePath  String
 - The path of the directory on the local file system containing the files to upload.
 - targetPath  String
 - The path of the directory on the file system where the files should be stored. This path must not
            refer to an existing directory.
 
See Also