in reply to Checking for files changed
If you find a module you want to use, just
to find out if you already have it.perl -e 'use <insert_Name_of_Module>'
To scan the files in a particular directory, just use the builtins readdir and opendir. Then, to get their modification time use stat. If you need to recurse into subdirectories, you might need File::Find.
To create a webpage, just print you tags and data to a new HTML file. If you want to trigger the scan from a web page to a make a web application, then use CGI.
Most people use the DBI module to access databases.
File::Copy is an obvious choice for copying files.
non-Perl: Andy Ford
|
|---|