cancel
Showing results for 
Search instead for 
Did you mean: 

Delete attachment thorough Java

Souvik_
Confirmed Champ
Confirmed Champ

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.

2 REPLIES 2

Julien_Carsique
Elite Collaborator
Elite Collaborator

Please, don't cross-post over sites

Souvik_
Confirmed Champ
Confirmed Champ

The code will be..

DocumentHelper.removeProperty(documentModel, path);

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