Gets the specified folder from server.
Folder corresponding to requested path.
| Exception Type | Condition |
|---|---|
| UnauthorizedException | Incorrect credentials provided or insufficient permissions to access the requested item. |
| NotFoundException | The requested folder doesn't exist on the server. |
| ForbiddenException | The server refused to fulfill the request. |
| WebDavException | Unexpected error occurred. |
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);
IFolder Interface | ITHit.WebDAV.Client Namespace