Hi Monks
Am returning to some PERL after a little time away and am struggling a bit. I am having a problem filtering out directories, should this give me a list of anything that is not a windows folder/directory?
opendir DIR, "e:\\core\\ops_utilities\\" or die $!;
my @files = grep {!-d $_} readdir(DIR);