Click or drag to resize

IFolderGetFolder Method

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

Namespace:  ITHit.WebDAV.Client
Assembly:  ITHit.WebDAV.Client (in ITHit.WebDAV.Client.dll) Version: 2.0.420.0
Syntax
IFolder GetFolder(
	string name
)

Parameters

name
Type: SystemString
Name of the folder.

Return Value

Type: IFolder
Folder corresponding to requested path.
Exceptions
ExceptionCondition
UnauthorizedExceptionIncorrect credentials provided or insufficient permissions to access the requested item.
NotFoundExceptionThe requested folder 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 = session.OpenFolder(new Uri("http://server:8080/Sales"));
IFolder folderEurope = folder.GetFolder("Europe");
Console.WriteLine(folderEurope.LastModified);
See Also