nuxeo

Delete/Remove main file and attachment from Nuxeo


Through my own custom listener I would like to delete main files and attachment from the nuxeo document. Deleting the document seems to be easy as you can use the below code.

doc.getCoreSession().removeDocument(doc.getRef()); doc.getCoreSession().save();

But how I can delete the file and attachment through my java code. Please provide me a snippet of code.


Solution

  • The code will be..

    DocumentHelper.removeProperty(documentModel, path);
    

    path = file:content for main file. For attachment "files/content[array index]"