in reply to Re^2: Tk::Image delete method
in thread Tk::Image delete method
Of course it does. The visit method is the most similar to File::Find's way:
my @img; path($dir)->visit(sub { push @img, $_->stringify if /\.(jpe?g|gif|png|bmp)$/i; }, {recurse => 1});
|
|---|