Perl Programming Question: Download Perl Programming PDF

How do I generate a list of all .html files in a directory?

Tweet Share WhatsApp

Answer:

Here's a snippet of code that just prints a listing of every file in the current directory that ends with the extension .html:
#!/usr/bin/perl -w
opendir(DIR, ".");
@files = grep(/.html$/,readdir(DIR));
closedir(DIR);
foreach $file (@files) {
print "$filen";
}

Download Perl Programming PDF Read All 46 Perl Programming Questions
Previous QuestionNext Question
How do I do fill_in_the_blank for each file in a directory?What is Perl one-liner?