!--a11y-->
DELETE 
“Check-out for delete” for a specified object. An object is deleted when the activity is checked in, in which the object was checked out for delete. This is done in the workspace to which this activity is associated.
Deleting a folder including its content is handled differently: A new activity is created, the folder and its content is checked out for delete and the activity is immediately checked in.

For the deletion of a folder with its content, there is no a separate activity check-in step. The deletion will be checked in immediately.
...
To delete a file a.txt from the current folder using activity A1, execute:
delete –a A1 a.txt
...
To delete a folder myFolder including all its content, execute:
delete –r --sure myFolder
The –r option (recurse) means that the whole folder subtree, starting from the given folder, has to be deleted.
Since this is an operation without a separate check-in step the --sure option is needed as the confirmation for this operation.
