Question

How can I delete a document in a document library with Pnp-Js-Core, but I need the registry to be stored in the recycle bin.

Thanks.

Was it helpful?

Solution

You can use the recycle method of pnp-js.

Try and modify the below code. It will send the document to recycle bin and gives you the guid of the recycle bin item.

$pnp.sp.web.getFileByServerRelativeUrl("/sites/testdev/Documents/presentation.pptx").
recycle().then(function(data){
    console.log(data);
});
Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top