Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^8: path-names [a very easy question of a true beginner]

by morgon (Priest)
on Oct 02, 2010 at 23:02 UTC ( [id://863119]=note: print w/replies, xml ) Need Help??


in reply to Re^7: path-names [a very easy question of a true beginner]
in thread path-names [a very easy question of a true beginner]

This is probably beside the point, but instead of
my @files = File::Find::Rule->file() ->name('einzelergebnis*.html') ->in( '.' );
I would simply use
my @files = <einzelergebnis*.html>;
as all your files seem to be in one directory (which also seems to be your current working directory).

The difference is that your code would also find files that reside in a subdirectories - and that may or may not be what you want. (I would not want subdirs as I then could simply create a subdir and move files I want exclude from processing there but you may think differently about this - you just have to be aware of it).

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (4)
As of 2024-04-25 12:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found