Delete attachment thorough Java

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.

0 votes

1 answers

2280 views

ANSWER



The code will be..

DocumentHelper.removeProperty(documentModel, path);

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

0 votes