in reply to Perl Directory file extension stats.

The File::Find module should, I think, be able to give you the answer if you provide it with the right callback function.
  • Comment on Re: Perl Directory file extension stats.

Replies are listed 'Best First'.
Re^2: Perl Directory file extension stats.
by kcott (Archbishop) on Apr 16, 2014 at 00:47 UTC

    Assuming a %stats hash has been declared, the File::Find callback can be as simple as:

    sub wanted { return unless -f; /(?<!^)[.]([^.]+)$/; ++$stats{$File::Find::dir}{$1 || ''}; }

    That will cause all files without an extension, as well as hidden files without an extension (e.g. .bashrc), to be counted together under a '' key. Everything else will counted under keys without a leading '.', e.g. 'pl', 'txt', 'png', etc.

    If counts for individual directories aren't required, that can be simplified even further by just using:

    ++$stats{$1 || ''};

    -- Ken