Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: get list of files matching part of file name

by RichardK (Parson)
on Jul 11, 2012 at 12:37 UTC ( [id://981106]=note: print w/replies, xml ) Need Help??


in reply to get list of files matching part of file name

you didn't say what you expect your code to do, so it difficult to offer any useful suggestions, other than glob('sample*.txt')

Maybe my @files = glob (".* *") doesn't do what you think it does?

see glob

Replies are listed 'Best First'.
Re^2: get list of files matching part of file name
by doubledecker (Scribe) on Jul 11, 2012 at 13:19 UTC

    I used glob to list all the files in my current directory and using those list of files i'm trying to find out matching files in other directory

      A couple of points:

      (1) In the foreach loop, $file contains a filename together with its path and extension. To extract just the name part, you need something like:

      (my $basename = fileparse($file)) =~ s/ \. .* $ //x;

      which uses the fileparse function from File::Basename to extract the filename, then removes the extension (if any).

      (2) print Dumper(@matches); will print each match on a separate line. You would probably be better off with something like this:

      printf "'%s' matches: %s\n", $basename, join(', ', @matches);

      HTH,

      Athanasius <°(((><contra mundum

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://981106]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (5)
As of 2024-04-20 01:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found