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, $filedir or die "Could not open $filedir directory: $!";
while ( @files = readdir DIR ) {
open(FILE, ">newfile.txt");
print FILE @files;
close(FILE);
}
closedir DIR;
#!/usr/bin/perl
use CGI;
$q = new CGI;
# *** [URL unfurl="true"]http://www.tek-tips.com/gviewthread.cfm/lev2/4/lev3/31/pid/452/qid/342124[/URL] ***
print "Content-type: text/html\n\n";
$filedir = $q->param('filedir');
opendir DIR, $filedir or die "Could not open $filedir directory: $!";
while ( @files = readdir DIR ) {
open(FILE, ">newfile.txt");
print FILE @files;
close(FILE);
}
closedir DIR;