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.
chdir('path/to/directory') or die "Can't change directory: $!";
opendir(DIR,'.') or die "Can't open directory: $!";
my %allfiles = map { $_ , (stat($_))[9]} readdir(DIR);
close(DIR);
print '<table>';
my $output = "";
foreach my $file (sort {$allfiles{$a} <=> $allfiles{$b}} keys %allfiles) {
$output .= "<tr><td>$file</td><td>" . localtime($allfiles{$file}) . "</td></tr>\n";
}
print $output,'</table>';