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

Sunday, 17 March 2019

spfx pnp add folder



private AddNewFolder():void
{
//id of content type
pnp.sp.web.folders.add("SiteAssets/NewFolder").then(function(response)
{
console.log("New Folder added !");
}).catch(function(exception)
{
alert("Something went wrong :"+exception);
});
}