Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

I am using File::Find to process a directory hierarchy. Some of the files are symlinks that I must follow. What I want to do is randomise the processing order of the files, something like this:

use File::Find; use List::Util 'shuffle'; my $somedir = "."; sub handlefind {print $_,"\n";} find({ wanted => \&handlefind, preprocess=>\&shuffle,follow=>1 }, $somedir);

However, preprocess is a noop when follow symlinks is on. Could anyone suggest an alternative approach to meet my goal. Thank you very much for your help,

Greg.

(first time poster)

PS if you are curious, this is part of perl script that is run > 100x on a cluster to process 1000s of 3d brain images. I use simple file locks to make sure that only one job is running on any image. Unfortunately file locking on NFS is not very reliable (and I am already taking precautions). What happens is that if I start 100x jobs at once everyone tries to grab the same file and it's a mess. So I want to scramble the processing order of files to reduce the number of possible collisions to put less pressure on the file locking mechanism.


In reply to randomising file order returned by File::Find by jefferis

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found