Re: Detecting PDF files in a folder and sorting them by date



bissatch@xxxxxxxxxxx wrote:
>
> I am about to write an application that will display all pdf files
> in a folder and display them by file name in order of date.
>
> Is there an easy way of doing this?

$names = array();
$dates = array();
if ($handle = opendir('/path/to/files')) {
while (false !== ($file = readdir($handle))) {
if (strlen($file) - strpos(strtoupper($file), '.PDF') == 4) {
$names[] = $file;
$dates[] = filectime($file);
}
}
closedir($handle);
}
asort($dates);
foreach ($dates as $key=>$value) {
$file = $files[$key];
$date = date('Y-m-d', $value);
echo "<p><a href='$file'>$file ($date)</a></p>";
}

Cheers,
NC

.



Relevant Pages

  • Wild Card Search Excel 2003
    ... I am using the following function to search a folder and display all ... of its PDF files as hyperlinks using the following module. ...
    (microsoft.public.excel.programming)
  • Re: GETFILE() Inside .Zip files?
    ... You can then use the array to populate a listbox, ... For Each loItem In loItems ... Get a folder object for the source path: ... Do not display a progress dialog box. ...
    (microsoft.public.fox.programmer.exchange)
  • Re: GETFILE() Inside .Zip files?
    ... You can then use the array to populate a listbox, ... For Each loItem In loItems ... Get a folder object for the source path: ... Do not display a progress dialog box. ...
    (microsoft.public.fox.programmer.exchange)
  • Detecting PDF files in a folder and sorting them by date
    ... I am about to write an application that will display all pdf files in a ... folder and display them by file name in order of date. ... Prev by Date: ...
    (comp.lang.php)
  • Re: PDF Thumbnails not displaying in Windows Explorer
    ... Though most people complain of adobe's thumbnail generators crashing their computers. ... >I have a user that has a folder full of PDF files. ... > How can we get the rest of the PDF files to display the first page as the ...
    (microsoft.public.windowsxp.general)