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

Re: How do I recursively process files through directories

by Discipulus (Canon)
on Sep 12, 2002 at 12:40 UTC ( [id://197204]=note: print w/replies, xml ) Need Help??


in reply to How do I recursively process files through directories

on my first script (I'm still a newbie) I had the same problem. I have solved it in this way:
use DirHandle; use Cwd; use File::stat; $strarting_dir = cwd; &creaalbero($strarting_dir); &alkilo($dimensione); print $dimensione; sub creaalbero { chdir $_; $cwd = cwd; $percorso = "$cwd"."\\"; $dh = new DirHandle; $dh->open("$_"); @lista = ($dh->read()); shift @lista; shift @lista; foreach $dir (<*>) { if (-d $dir) { chdir $dir; &creaalbero(); $albero{"$percorso"} = directory; chdir".."; } if (-f $dir) { $current = cwd; $albero{"$current"."\\"."$dir"} = file; $stat = stat ($dir); $dimensione += $stat->size; } } } sub alkilo { $dimensione = $dimensione / 1024; @grand = qw/Tb Gb Mb Kb /; if ( $dimensione >= 1024 ) { pop @grand ; &alkilo($dimensione) } unless ( $dimensione == 0 ) { $molt = pop @grand } $dimensione =~ /^\d*\.\d?\d?/; $dimensione = "$&" . " " . "$molt"; }
This code make %albero with the paths as keys and directory or file as values(is unnecessary to recurse the directory).
It calculate the size of the sub tree and print out the value.
The magic point is:
foreach $dir(<*>)
NOTE: creaalbero means maketree and percorso means path.

seeU L*

Log In?
Username:
Password:

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

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

    No recent polls found