I want to read out a directory recursively to print the data-structure in an HTML-Page with Template::Toolkit. But I\'m hanging in how to save the Paths and Files in a form that
This should do the trick
use strict; use warnings; use File::Find qw(finddepth); my @files; finddepth(sub { return if($_ eq '.' || $_ eq '..'); push @files, $File::Find::name; }, '/my/dir/to/search');