Delete all documents from a particular document folder

Hi,

My requirement is to click on a link that re-directs me to a UI, but before that I want to delete all existing documents from a document folder. Is there any way by which I can delete all the documents from a document folder in a go. I know we have a!deleteDocument() smart service which would delete a particular doc. If there is no way to delete all docs in one go, please let me know how to get the doc Ids of all existing documents in a doc folder.

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to nickk1385

    this one IS doable without the plug-in, but it adds several tedious steps (seriously, i'm not sure what your project leadership has against plug-ins, it's pretty silly...)
    (BTW this is a pretty old thread at this point.)

    1) in one node, get all document contents of a folder, storing the IDs into an array PV
    2) call the "delete document" (OOB) node in MNI, only if there are one or more results from step 1, iterating over each item in the array
    3) if there are any sub-folders (and we want to clear them out as well), the same procedure needs to be run recursively over them
    4) if desired, the now-emptied folders now need to be deleted too.

Children
No Data