Hi Monks,
I am currently getting a list of files from a directory hiearchy with this script which works great (user name and full name get appended at end of file path):
use File::Find;
use File::stat;
my $dir = "path/to/directory";
find ( {'
wanted' => sub {
my $file = $File::Find::name;
($n, $p, $uig, $gid, $dq, $c, $fn, $d, $s) =
getpwuid (stat($file)-> uid);
if (-f && (/^[^.]/) ) {
print $file.":".$n.":".$fn;
}
},
'preprocess' => sub {
@_ = map { $_->[0] }
sort { $a->[1] cmp $b->[1] || $a->[2] <=> $b->[2] }
map { m/(\d+)(\.[^.]+$)/ ? [$_, $2.$`,int($1)] : [$_, "", ""] } @_;
@_ = grep (/^[^\.]/, @_)
}
}
,$dir);'
The thing is that most of the files are file sequences like this:
image_sequenceA.1.tif
image_sequenceA.2.tif
image_sequenceA.3.tif
image_sequenceB.40.tif
image_sequenceB.41.tif
image_sequenceB.42.tif
So I would love to be able to filter the results to only get one entry per sequence like this:
image_sequenceA.[1-3].tif
image_sequenceB.[40-42].tif
Please note that the sequences dont have padded numbers but I am already solving that with the map and sort above so now I just need to only print the unique sequences.
Actually since I am getting the full path and also attaching the user the output should ultimately look like this:
path/to/directory/image_sequenceA.[1-3].tif:bob:Bob User
path/to/directory/image_sequenceB.[40-42].tif:frank:Frank User
Thanks.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.