Tag Archives: Read File

Get file list in php

/** * Usage : * $HowToSearch – Specifies the search method. * There are two options: BY_EXTENSION, or BY_EXPRESSION. * $Condition – This specifies the search condition. * If you are using the BY_EXTENSION method, … Continue reading

Posted in PHP | Tagged | Leave a comment

Perl read last n lines of a file

sub last_x_lines { my ($filename, $lineswanted) = @_; my ($line, $filesize, $seekpos, $numread, @lines); open F, $filename or die “Can’t read $filename: $!\n”; $filesize = -s $filename; … Continue reading

Posted in Perl | Tagged , | Leave a comment