Hi Monks,
i am trying to find all '.dll' files and '.exe' files stored in a directory(this directory may also contain other files) and storing those extracted files in say @array_files and printing them..
i am using the following code for that..
the problem is........
i am able to extract only the files that i explicitly mentioned the full name of the file given to the file variable $name below.
i.e only test1.dll files are extracting other names with .dll are not coming..
if i use $name = "/*.dll|*.exe/" to extract my required .exes and .dlls.. the module is not at all looking into and matching the pattern and failing at 'if'
condition..
shall i have to use other module for this req.. or is any other way to do using File::Find?
#!/usr/bin/perl
use File::Find;
$dir = ".";
$name = "test1.dll";
filefind($name);
sub filefind
{
# my $aName = @_;
# my $file = $File::Find::aName;
my @dirs = ($dir);
find(\&mysub, @dirs);
return @files;
}
print "files are @files\n";
sub mysub
{
if ($_ =~ $name)
{
push @files, $_;
}
}
thanks®ards,
pavan
fixed formatting by holli
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.