linux find and delete files with name

C++
# remove everything in a directory 
rm /path/to/dir/*
# remove all sub-directories and files
rm -r /path/to/dir/*
rm /home/harry/ascii.txt$ find -type f -name '*install*' -delete

Source

Also in C++: