Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
opendir DIR, 'path/to/dir' or die "$!";
my @files = grep {-f "path/to/dir/$_"} readdir DIR;
close DIR;
print "Total no. of files: ", scalar @files, "\n";