Hello Monks,
I have been trying to figure out how to do this.
I have a network path e.g \\karger78\testing
So that is coded into a variable called $hardPath;
Now I do a directory scan of and bilding a list of files and directory into an array by using the following:
my @FullList = File::Find::Rule->file()->in($hardPath);
Now what I would like to do is just split all the sub directories of $hardPath into an array. Any ideas?