The directory contains many files to clean. All the files can be found and deleted by one single instruction:
$ find . -iname '*.cbp' -exec rm -rf {} \;
-iname 'name-pattern-to-search' : File pattern for insensitive search. The sensitive pattern is -name.
-exec rm -rf {} \; : Delete all files matched by file pattern.
Ref: