in reply to Q regarding glob

Easiest way is probably to use File::Slurp.

Here's an untested example:

#!env perl use strict; use warnings; use File::Slurp qw/read_dir/; my $Dir_Prefix = '../../dir1/dir2'; my $File_Path = 'dir3/filename'; MAIN: { my @files = read_dir($Dir_Prefix); foreach my $file (@files) { -d $file or next; if (-e "$Dir_Prefix/$file/$File_Path") { print "$file\n"; } } }

Update:Updated from a File::Find example.

stephen

Replies are listed 'Best First'.
Re^2: Q regarding glob
by arunagiri (Initiate) on May 17, 2013 at 00:53 UTC
    That's Informative and usefull. Thanks