Quick Search:
 
 PHP Code: Get oldest file in directory Jump to:  
Category: >> PHP Code >> Get oldest file in directory  

<< lastnext >>

Snippet Name: Get oldest file in directory

Description: Shows the oldest file in directory.

Comment: (none)

Language: PHP
Highlight Mode: PHP
Last Modified: March 01st, 2009

<?PHP 
 
FUNCTION get_oldest_file($directory) { 
    IF ($handle = OPENDIR($directory)) { 
        WHILE (FALSE !== ($file = READDIR($handle))) { 
            $files[] = $file; 
        } 
        FOREACH ($files AS $val) { 
            IF (IS_FILE($directory.$val)) { 
                $file_date[$val] = FILEMTIME($directory.$val); 
            } 
        } 
    } 
    CLOSEDIR($handle); 
    ASORT($file_date, SORT_NUMERIC); 
    RESET($file_date); 
    $oldest = KEY($file_date); 
    RETURN $oldest; 
} 
// example: 
ECHO get_oldest_file("/the/path/to/the/directory"); 
 
?>
 


 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org