How can I recursively na开发者_如何转开发vigate subdirectories (in Windows) with Perl? Something similar to this, but recursive.
… Even though my purpose it not to rename the files. But I am struck in navigating to Sub directories of the sub directories. …
You will want to read File::Find
's documentation. Especially, the find
function which will help you traverse directory trees.
精彩评论