Hello!
I am fond of the shell as well, for the same reasons, and the same exeptions. (But I prefer moving stuff to trash.)
I agree with you totally on the cd command I will make a string construct that should go like this as a replacment, under the hope that cd returns an errorcode when fed a non-existing directory: Edit It does!
do shell script "cd " & pxFolder & " && rm -fR " & pxfolList
For those not so well versed in shell, a command string is a string of commands separated by either && or || the && works like a short circuted and, in that if the error code of the command preceding that and returns with any other errorcode than 0, then the rest of the commandstring fails.
The || works like an or (inclusive ), the command after the || gets to be executed, no matter what error code the previous command returned with.
Thanks for pointing that out!
I see that my script don’t catch that error early, in the finder tell block, so I shall implent a test for it there, before running the script, I will still use the string construct as I may be liable to copy paste code in the future! 
As for the xargs construct; I really tried to used space separated qouted form of paths, fed to xargs with cat like this:
do shell script "cd " & pxFolder & " ; cat " & pxfileList & " |xargs rm -f "
But I didn’t manage to make xargs work for some odd reason! (I got an error saying it was missing a quote.)
I do however like the way you use find to remove all subdirectories, I seldom use find nowadays, with locate, and mdfind, or just spotlight!
Consider your way snagged!.
(I really don’t understand how I failed to see that post yesterday, but I did! ) 