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

Re^2: use file::find to find files modified in last 5 days

by mikesolomon (Novice)
on Feb 22, 2012 at 12:54 UTC ( [id://955514]=note: print w/replies, xml ) Need Help??


in reply to Re: use file::find to find files modified in last 5 days
in thread use file::find to find files modified in last 5 days

I had looked at that but couldn't work out how to integrate it into my script

  • Comment on Re^2: use file::find to find files modified in last 5 days

Replies are listed 'Best First'.
Re^3: use file::find to find files modified in last 5 days
by talexb (Chancellor) on Feb 23, 2012 at 17:37 UTC

    As brother thargas has explained, you need to look at the documentation. Type perldoc File::Find and you'll be presented with an example in the Synopsis section that should answer your question:

    use File::Find; find(\&wanted, @directories_to_search); sub wanted { ... }
    You pass File::Find::find two parameters: a reference to a function that will be called when a matching file is found, and a list of directories to be searched. And it should Just Work(tm).

    Alex / talexb / Toronto

    "Groklaw is the open-source mentality applied to legal research" ~ Linus Torvalds

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (4)
As of 2024-04-24 22:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found