 | FileSystemClientUploadFile(String, String) Method |
Uploads a file to the file system.
Namespace: Ookii.Jumbo.Dfs.FileSystemAssembly: Ookii.Jumbo.Dfs (in Ookii.Jumbo.Dfs.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic void UploadFile(
string localSourcePath,
string targetPath
)
Public Sub UploadFile (
localSourcePath As String,
targetPath As String
)
public:
void UploadFile(
String^ localSourcePath,
String^ targetPath
)
member UploadFile :
localSourcePath : string *
targetPath : string -> unit
Parameters
- localSourcePath String
- The path of the file to upload.
- targetPath String
- The path on the file system to store the file. If this is the name of an existing directory, the file
will be stored in that directory.
See Also