Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: directory tree to hash of arrays

by Kenosis (Priest)
on Mar 08, 2014 at 00:27 UTC ( [id://1077473]=note: print w/replies, xml ) Need Help??


in reply to directory tree to hash of arrays

Perhaps the following will be helpful:

use strict; use warnings; use Cwd; use JSON; my %hash; my $currDir = Cwd::cwd(); push @{ $hash{$currDir} }, { name => $_, size => ( stat($_) )[7] } for + <*>; my $j = encode_json \%hash; print $j;

Sample output:

{"/home/user/programming/Perl/tmp":[{"name":"File1.txt","size":63},{"n +ame":"File2.txt","size":55},{"name":"temp5.pl","size":196},{"name":"t +est.pl","size":197}]}

When run, it gets the current dir, uses it as the hash key whose value is a reference to an array of (file and filesize) hashes. That hash is later json encoded. Substitute your own path in $currDir, as needed.

Replies are listed 'Best First'.
Re^2: directory tree to hash of arrays
by mabossert (Scribe) on Mar 08, 2014 at 00:59 UTC

    Thanks for the help! I should have been more clear in the original post. I need it to be recursive...Hence the link I put in the original post.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (5)
As of 2024-04-19 03:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found