Temporarily deletes the specified folders from the Media Manager.
The deleted folders are moved to the Media Manager's trash-root
folder (trash bin) unless permanently deleted. To permanently delete folders, specify the permanent
parameter with the value true
. Permanently deleting folders isn't reversible, so make sure that the files in these folders aren't being used in a site or in any other way as the files will no longer be accessible.
Note the following:
You can only call this method when authenticated as a Wix app or Wix user identity.
function bulkDeleteFolders(
folderIds: Array<string>,
options: BulkDeleteFoldersOptions,
): Promise<void>;
IDs of the folders to move to the Media Manager's trash bin.
Options to use when deleting folders.
import { folders } from "@wix/media";
async function bulkDeleteFolders(folderIds, options) {
const response = await folders.bulkDeleteFolders(folderIds, options);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.