5

Is there any way to delete a Confluence page and have it delete all of its children at once?

leora
  • 6,193

4 Answers4

2

You can do it easily with WebDav. Instructions for installing and setting up the WebDAV plugin can be found here.

  • The confluence webdav endpoint is: https://<server>/confluence/plugins/servlet/confluence/default/Global/
  • You can map it to a drive letter in explorer,
  • Or access with eg Total Commander and davplug.wfx, or some other DAV client

Then just delete the directory corresponding to the page!

0

Install the Delete Page Tree plugin.

0

Yu can do this through the API by basically scripting it yourself.

The SOAP API supports:

  1. deleting a page
  2. getting all the children of a page

So between 1 and 2, you can keep recursively getting children and deleting these pages.

Be careful as this could be dangerous and wipe out lots of pages by accident if you have it start from the wrong page (although Confluence does have a recover feature.)

leora
  • 6,193
-1

Referring to this thread, this is not possible for the moment.

Studer
  • 3,816