If you don’t like the “find” command, you can use the following one instead (I prefer it myself):
ls -R | grep “\.xml”
where “-R” lists all recursively
grep is used to filter filename
“\.xml” you must put the “\” before any special character to return the proper result, you can of course use any other regular expression”