"Hans" <yammax@zonnet.nl> schrieb im Newsbeitrag
news:9tefnp$s1e$1@nereid.worldonline.nl...
> I got a site containing tours. For each location I got a directory. Now I
> need a CGI script that generates a list from al files in a directory en
puts
> that list on a customisable HTML file. I want also to give a description
of
> the file.
You could use File::Find to fetch a list of files recursively. find() will
call the wanted() function that could do printing and other stuff for you.
See perldoc File::Find.
CGI programming and HTML handling is covered by a range of CPAN modules,
see search.cpan.org and read the modules' documentation.
> I want for each location (directory) a HTML list with all files.
>
> When I get new tours suplied (.doc or .xls or .doc) I just want to copy
that
> file in the right directory, en then it must appear on the list.
>
> Can anybody help me??
Help yourself, perldoc is always your friend.