spo folder add
Creates a folder within a parent folder
Usage
m365 spo folder add [options]
Options
-u, --webUrl <webUrl>
The URL of the site where the folder will be created.
-p, --parentFolderUrl <parentFolderUrl>
The server- or site-relative decoded URL of the parent folder.
-n, --name <name>
Name of the new folder to be created
-h, --help [help]
Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are
options
,examples
,remarks
,response
,full
. Default isoptions
.--query [query]
JMESPath query string. See http://jmespath.org/ for more information and examples.
-o, --output [output]
Output type.
json
,text
,csv
,md
,none
. Defaultjson
.--verbose
Runs command with verbose logging.
--debug
Runs command with debug logging.
Examples
Creates folder in a specific library within the site
m365 spo folder add --webUrl https://contoso.sharepoint.com/sites/project-x --parentFolderUrl '/Shared Documents' --name 'My Folder Name'
Creates folder in a specific folder within the site
m365 spo folder add --webUrl https://contoso.sharepoint.com/sites/project-x --parentFolderUrl '/sites/project-x/Shared Documents/Reports' --name 'Financial reports'
Response
- JSON
- Text
- CSV
- Markdown
{
"Exists": true,
"ExistsAllowThrowForPolicyFailures": true,
"IsWOPIEnabled": false,
"ItemCount": 0,
"Name": "My new folder",
"ProgID": null,
"ServerRelativeUrl": "/sites/project-x/Shared Documents/My new folder",
"TimeCreated": "2023-07-20T19:29:16Z",
"TimeLastModified": "2023-07-20T19:29:16Z",
"UniqueId": "94a9aa56-f0b5-4268-941f-737c841ba7c7",
"WelcomePage": ""
}
Exists : true
ExistsAllowThrowForPolicyFailures: true
IsWOPIEnabled : false
ItemCount : 0
Name : My new folder
ProgID : null
ServerRelativeUrl : /sites/project-x/Shared Documents/My new folder
TimeCreated : 2023-07-20T19:29:16Z
TimeLastModified : 2023-07-20T19:29:16Z
UniqueId : 94a9aa56-f0b5-4268-941f-737c841ba7c7
WelcomePage :
Exists,ExistsAllowThrowForPolicyFailures,IsWOPIEnabled,ItemCount,Name,ServerRelativeUrl,TimeCreated,TimeLastModified,UniqueId,WelcomePage
1,1,,0,My new folder,/sites/project-x/Shared Documents/My new folder,2023-07-20T19:29:16Z,2023-07-20T19:29:16Z,94a9aa56-f0b5-4268-941f-737c841ba7c7,
# spo folder add --webUrl "https://contoso.sharepoint.com/sites/project-x" --parentFolderUrl "/sites/project-x/Shared Documents" --name "My new folder"
Date: 20/7/2023
## My new folder (94a9aa56-f0b5-4268-941f-737c841ba7c7)
Property | Value
---------|-------
Exists | true
ExistsAllowThrowForPolicyFailures | true
IsWOPIEnabled | false
ItemCount | 0
Name | My new folder
ServerRelativeUrl | /sites/project-x/Shared Documents/My new folder
TimeCreated | 2023-07-20T19:29:16Z
TimeLastModified | 2023-07-20T19:29:16Z
UniqueId | 94a9aa56-f0b5-4268-941f-737c841ba7c7
WelcomePage |