opendir(DIR, "/your/dir");
my @gifs = grep { /\.gif$/ } readdir(DIR);

ceauke wrote:
Hi guys

I wanted to do a simple script to show all pictures in a specific folder.
But I don't see any functions to read all files in a folder.

The logic needs to go something like this:
- Open directory to read file list
- If file like *.gif then print filename
Any tips?

Reply via email to