Create Folders and Sub-Folders in SharePoint Programmatically
How to create Folders in SharePoint 2013?
To create a folder in SharePoint list or Library, follow these steps:
If you don't get "New Folder" button, it could be disabled. Here is how to enable folders in SharePoint list:
Here is the PowerShell to create a folder in SharePoint: How to Create a Folder in SharePoint Document Library using PowerShell?
To create a folder in SharePoint list or Library, follow these steps:
- Navigate to your SharePoint list or library
- From the "Files" tab on the Ribbon, Click on "New Folder" button
- Give a name to your new folder and click "Save"
If you don't get "New Folder" button, it could be disabled. Here is how to enable folders in SharePoint list:
- Go to List Settings, Click on "Advanced Settings"
- Scroll down and set "Yes" to Make "New Folder" command available option.
using (SPSite site = new SPSite("http://sharepoint.company.com")) { using (SPWeb web = site.OpenWeb()) { //Get the List SPList list = web.Lists["Project Tracker"]; //Create a Folder SPListItem folder = list.AddItem(list.RootFolder.ServerRelativeUrl, SPFileSystemObjectType.Folder, "Sales Documents"); folder.Update(); //Create a Sub-Folder SPListItem SubFolder = list.AddItem(folder.Folder.ServerRelativeUrl , SPFileSystemObjectType.Folder, "APAC Sales Docs"); SubFolder.Update(); } }Alternatively, you can use:
//Get the List SPList list = web.Lists["Shared Documents"]; String url = list.RootFolder.ServerRelativeUrl.ToString(); SPFolderCollection folders = web.GetFolder(url).SubFolders; //Create new folder folders.Add("New Documents");
great
ReplyDeleteThat's give me an error, this is what i get :
ReplyDeleteLe terme « Get-SPWeb » n'est pas reconnu comme nom d'applet de commande, fonction, fichier de script ou programme exécutable. Vérifiez l'orthographe du nom, ou si un chemin d'accès ex
iste, vérifiez que le chemin d'accès est correct et réessayez.
Au niveau de ligne : 4 Caractère : 15
+ $web=Get-SPWeb <<<< "http://sharepoint.company.com"
+ CategoryInfo : ObjectNotFound: (Get-SPWeb:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Vous ne pouvez pas appeler de méthode sur une expression ayant la valeur Null.
Au niveau de ligne : 6 Caractère : 28
+ $list=$web.Lists.TryGetList <<<< ("Documents")
+ CategoryInfo : InvalidOperation: (TryGetList:String) [], RuntimeException
+ FullyQualifiedErrorId : InvokeMethodOnNull
1. Are you trying to Run this PowerShell script on SharePoint 2007? If so, for Cmdlets like Get-SPWeb, you have to follow How to use PowerShell with MOSS 2007
Delete2. Make sure the parameters: URL "http://sharepoint.company.com" and the list "Documents" are valid.
Will you solution to create a folder work with SharePoint Online or is this only for on premise?
ReplyDeleteFor SharePoint Online, refer: How to Create a Folder in SharePoint Online using PowerShell?
DeleteIt gave me an error "Could not load file or assembly 'Microsoft.SharePoint.Library, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' or one of its dependencies. The system cannot find the file specified.":"Microsoft.SharePoint.Library, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c
ReplyDelete