Showing posts with label sharepoint framework delete folder using pnp. Show all posts
Showing posts with label sharepoint framework delete folder using pnp. 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);
});
}