Click or drag to resize

IFolderAsyncCreateFileAsync Method (String)

IT Hit WebDAV Classes Reference
Creates a file with a specified name.

Namespace:  ITHit.WebDAV.Client
Assembly:  ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll) Version: 2.0.420.0
Syntax
Task<IFileAsync> CreateFileAsync(
	string name
)

Parameters

name
Type: SystemString
Name of the new file.

Return Value

Type: TaskIFileAsync
Newly created file.
Exceptions
ExceptionCondition
ForbiddenExceptionCreation of child items not allowed.
NotFoundExceptionThis folder doesn't exist on the server.
LockedExceptionThis folder is locked and no or invalid lock token was specified.
WebDavHttpExceptionServer returned unknown error.
WebDavExceptionUnexpected error occurred.
Remarks
If a file with specified name exists its content is truncated.
Examples
The following example demonstrates how to upload a file from local file system to a WebDAV server.
string license = "<?xml version='1.0' encoding='utf...
WebDavSessionAsync session = new WebDavSessionAsync(license);
session.Credentials = new NetworkCredential("User1", "pwd");
IFolderAsync folder = await session.OpenFolderAsync(new Uri("http://server:8080/Sales"));

IFileAsync file = await folder.CreateFileAsync("products.xlsx");
file.AllowWriteStreamBuffering = false;
file.TimeOut = 36000000; // 10 hours
await file.UploadAsync("C:\\products.xlsx");
See Also