alfirth on 05/05/11
Last Edited at 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.