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.
#read from Location.pm module which return #location of the databases.
@filelocation = Location::destination ($database);
$location = $filelocation[0];
chdir $location;
opendir (DIR, "$location")|| die "Directory not found\n";
@fileList = readdir(DIR);
foreach my $file (@fileList) {
#...do something with the files
}