http://www.perlmonks.org?node_id=858235


in reply to Re: Beginners guide to File::Find
in thread Beginners guide to File::Find

I just need sorting...
find({ preprocess => sub { return sort @_ }, wanted => \&callback, }, @path);
It took a bit of googling to find this thread but this adaptation works great. I cannot believe this is not in the pod for File::Find.