advanced code snippet search
alfirth on 05/05/11
tree hash recursion traverse
05/05/11 10:42am
sub make_dirs { my ($href, $path) = @_; foreach (keys %$href) { make_dirs($href->{$_}, "$path$_/"); } print $path; }
Report this snippet Tweet
Comment:
You need to login to post a comment.