Showing posts with label spfx pnp delete folder. Show all posts
Showing posts with label spfx pnp delete folder. Show all posts

Sunday, 17 March 2019

spfx pnp delete folder


private DeleteFolder():void
{
//id of content type
pnp.sp.web.getFolderByServerRelativePath("SiteAssets/NewFolder").delete()
.then(function(response)
{
console.log("Folder Deleted !");
}).catch(function(exception)
{
alert("Something went wrong :"+exception);
});
}