Click or drag to resize

IFolderGetFileAsync Method

IT Hit WebDAV Classes Reference
Gets the specified file from server.

Namespace:  ITHit.WebDAV.Client
Assembly:  ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll) Version: 6.0.4052-Beta
Syntax
Task<IFile> GetFileAsync(
	string name
)

Parameters

name
Type: SystemString
Name of the file.

Return Value

Type: TaskIFile
File corresponding to requested name.
Exceptions
ExceptionCondition
UnauthorizedExceptionIncorrect credentials provided or insufficient permissions to access the requested item.
NotFoundExceptionThe requested resource doesn't exist on the server.
ForbiddenExceptionThe server refused to fulfill the request.
WebDavExceptionUnexpected error occurred.
Examples
string license = "<?xml version='1.0' encoding='utf...
WebDavSession session = new WebDavSession(license);
session.Credentials = new NetworkCredential("User1", "pwd");
IFolder folder = await session.GetFolderAsync(new Uri("https://server:8080/Sales"));
IFile file = await folder.GetFileAsync("total.doc");
Console.WriteLine(file.LastModified);
See Also