Find/searching files in subdirectories excluding the fiels in Parent Directory

Hi All,

requirement is to find and remove the files from sub directories but it should exclude the files from parent directory.

At present i am using the below one but it finds and remove files from both parent and sub directories.

find ${PATH} -type f \( -name securitas\* -o -name \*gz -o -name \*txt -o -name \*dat* \) -mtime +${GPURGE} -exec rm {}

Thanks In Advance
Naveen

Which version of find are you using?
If its GNU

find ${PATH} -type f -mindepth 2 ...