spo file remove
Removes the specified file
Usage
m365 spo file remove [options]
Alias
m365 spo page template remove
Options
-u, --webUrl <webUrl>URL of the site where the file to remove is located.
-i, --id [id]The ID of the file to remove. Specify either
idorurlbut not both.--url [url]The server- or site-relative decoded URL of the file to remove. Specify either
idorurlbut not both.--recycleRecycle the file instead of actually deleting it.
--bypassSharedLockRemove the file even if it is locked for shared use.
-f, --forceDon't prompt for confirming removing the file.
-h, --help [help]Output usage information. Optionally, specify which section of command's help you want to see. Allowed values are
options,examples,remarks,permissions,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.--verboseRuns command with verbose logging.
--debugRuns command with debug logging.
Examples
Remove a file by ID.
m365 spo file remove --webUrl https://contoso.sharepoint.com/sites/project-x --id 0cd891ef-afce-4e55-b836-fce03286cccf
Remove a file by site-relative URL.
m365 spo file remove --webUrl https://contoso.sharepoint.com/sites/project-x --url "/Shared Documents/Test.docx"
Remove a file by server-relative URL to the recycle bin.
m365 spo file remove --webUrl https://contoso.sharepoint.com/sites/project-x --url "/sites/project-x/Shared Documents/Test.docx" --recycle
Remove a file that is locked
m365 spo file remove --webUrl https://contoso.sharepoint.com/sites/project-x --url "/Shared Documents/Test.docx" --bypassSharedLock
Remove a page template by site-relative URL.
m365 spo page template remove --webUrl https://contoso.sharepoint.com/sites/project-x --url "/Shared Documents/Forms/Template.dotx"
Response
The command won't return a response on success.