I'd like to thank everyone who offered their input for my problem, I got everything working. And no, this wasn't for a class, it was a "busy-work" assignment for work that got handed down, I wanted to use PERL to both save time, and learn something new. Here is my completed code: use strict;
use warnings;
use diagnostics;
use File::Find;
use HTML::HeadParser;
my $parser = new HTML::HeadParser;
my @data;
my $path = '/base/path';
&main;
sub main
{
find(\&html_files, $path);
open OUT, "+>filelist.html" || die "Can not write file";
print OUT
'<html><head><title>File List</title></head><body><center>'
+, "\n",
'<table border="1" cellpadding="5" cellspacing="0">', "\n";
foreach my $file(sort @data)
{
my $htmlPage = &fileRead("<$file");
$parser->parse($htmlPage);
my $pageTitle = $parser->header('Title');
if ($pageTitle eq "")
{
$pageTitle = ' ';
}
print OUT '<tr><td>', "\L$file\E", '</td><td>', $pageTitle
+, '</td></tr>', "\n";
}
print OUT '</table></body></html>';
close OUT;
}
sub html_files
{
push @data, $File::Find::name if /\.s?html?$/;
push @data, $File::Find::name if /\.s?HTML?$/;
push @data, $File::Find::name if /\.s?htm?$/;
push @data, $File::Find::name if /\.s?HTM?$/;
}
sub fileRead
{
my ($file) = @_;
my $dataIn = undef;
open IN, $file || die "Can not open $file";
while (<IN>)
{
my $temp = $_;
$dataIn = $dataIn.$temp;
}
close IN;
return $dataIn;
}
Arashi
I'm sure Edison turned himself a lot of colors before he invented the lightbulb. - H.S.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|