Namespace: ITHit.WebDAV.Client
Task MoveToAsync( IFolderAsync destinationFolder, string destinationName, bool overwrite )
[Missing <returns> documentation for "M:ITHit.WebDAV.Client.IHierarchyItemAsync.MoveToAsync(ITHit.WebDAV.Client.IFolderAsync,System.String,System.Boolean)"]
Exception | Condition |
---|---|
ForbiddenException | The source and destination URIs are the same. |
ConflictException | A resource cannot be created at the destination until one or more intermediate collections have been created. |
PreconditionFailedException | The destination resource exists and overwrite was false. |
LockedException | The destination folder or items to be overwritten were locked or source items were locked. |
NotFoundException | This item doesn't exist on the server. |
WebDavHttpException | Server returned unknown error for specific resource. |
WebDavException | Unexpected error occurred. |
IFolderAsync itemSrc = await session.OpenFolderAsync(new Uri("http://server:8080/Library/")); IFolderAsync itemDst = await session.OpenFolderAsync(new Uri("http://server:8080/Sales/")); try { await itemSrc.MoveToAsync(itemDst, itemSrc.DisplayName, false); } catch (PreconditionFailedException) { Console.WriteLine("The destination item exists and 'overwrite' was 'false'."); } catch (WebDavHttpException ex) { Console.WriteLine(ex.Message + " " + ex.Status.Code + " " + ex.Status.Description); foreach (IMultistatusResponseAsync resp in ex.Multistatus.Responses) { // Find which items failed to move. Console.WriteLine(resp.Href + " " + resp.Status.Code + " " + resp.Status.Description); } }