Does anyone know if there's a way in Perl (template) where we can list out all the DCR (pages) based on a root folder (path)?Thanks!
use File::Find;my @files;find(\&dostuff,'/iwmnt/default/path/to/whatevz');sub dostuff { # Same as readdir, this will give you files, subdirectories, # and implicit directories '.' and '..' push (@files, $File::Find::name) if -f $File::Find::Name;}