Main > Programming > Libraries >

File::Find 5.8.8

File::Find 5.8.8

Sponsored Links

File::Find 5.8.8 Ranking & Summary

RankingClick at the star to rank
Ranking Level
User Review: 0 (0 times)
File size: 12.2 MB
Platform: Any Platform
License: Perl Artistic License
Price:
Downloads: 913
Date added: 2007-04-26
Publisher: File::Find team

File::Find 5.8.8 description

File::Find is a Perl module to traverse a directory tree.

SYNOPSIS

use File::Find;
find(&wanted, @directories_to_search);
sub wanted { ... }

use File::Find;
finddepth(&wanted, @directories_to_search);
sub wanted { ... }

use File::Find;
find({ wanted => &process, follow => 1 }, .);

These are functions for searching through directory trees doing work on each file found similar to the Unix find command. File::Find exports two functions, find and finddepth. They work similarly but have subtle differences.

find

find(&wanted, @directories);
find(%options, @directories);

find() does a depth-first search over the given @directories in the order they are given. For each file or directory found, it calls the &wanted subroutine. (See below for details on how to use the &wanted function). Additionally, for each directory found, it will chdir() into that directory and continue the search, invoking the &wanted function on each file or subdirectory in the directory.

finddepth

finddepth(&wanted, @directories);
finddepth(%options, @directories);

finddepth() works just like find() except that is invokes the &wanted function for a directory after invoking it for the directorys contents. It does a postorder traversal instead of a preorder traversal, working from the bottom of the directory tree up where find() works from the top of the tree down.

File::Find 5.8.8 Screenshot

Advertisements

File::Find 5.8.8 Keywords

Bookmark File::Find 5.8.8

Hyperlink code:
Link for forum:

File::Find 5.8.8 Copyright

WareSeeker periodically updates pricing and software information of File::Find 5.8.8 full version from the publisher, so some information may be slightly out-of-date. You should confirm all information before relying on it. Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future development of File::Find 5.8.8 Edition. Download links are directly from our publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed

Allok Video Splitter 2.2.0 Review:

Name (Required)
Email(Required)
Captcha
Featured Software

Want to place your software product here?
Please contact us for consideration.

Contact WareSeeker.com
Related Software
FindBin is a Perl module that can locate directory of original perl script. Free Download
NDBM_File is a Perl module that allows tied access to ndbm files. Free Download
ODBM_File is a Perl module to allow tied access to odbm files. Free Download
File::Path is a Perl module to create or remove directory trees. Free Download
File::Basename is a Perl module to parse file paths into directory, filename and suffix. Free Download
Fcntl is a Perl module to load the C Fcntl.h defines. Free Download
DirHandle is a Perl module created to supply object methods for directory handles. Free Download
File::Find::Rule is an alternative Perl interface to File::Find. Free Download