in reply to How to reference a nested anonymous array

Try something like:

foreach(@{ $fileinfo{$md5hash}{path} }) { print; }

By de-referencing the array, you should be able to treat that array like any other.


Rich36