Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm attempting to write a PHP script that will look at a directory and go through getting the names of the sub-directories with the last modified date of each sub-directory.

So it would return something like:

Sub1, 081512 Sub2, 081312 etc

share|improve this question
5  
What have you tried? – j08691 Aug 15 '12 at 21:08
Iterators are your friend. – prodigitalson Aug 15 '12 at 21:10

closed as not a real question by Pekka 웃, prodigitalson, Josh, Jürgen Thelen, bažmegakapa Aug 16 '12 at 0:25

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

The script below will output each folder/file in the directory and the last time they were each modified in this format:

Filename - 11/28/1991 04:32:22

Filename - 11/28/1991 04:32:22

Filename - 11/28/1991 04:32:22

$dir = opendir('directory/path'); 

while ($read = readdir($dir)) 
{ 
    if ($read!='.' && $read!='..' && is_dir('directory/path/'.$read)) 
    { 
        echo $read." - ".date("m/d/Y H:i:s",filemtime("directory/path/".$read))."<br>";
    } 
} 

closedir($dir); 
share|improve this answer
He said only wants directories, not files... also this isnt recursive so its only going to grab immediate children... not sure if thats what he wants or not. – prodigitalson Aug 15 '12 at 21:17
Edited to only include directories :) About grabbing sub-directories of sub-directories... I think this should give a good enough idea to assist him in doing it himself? – trevorkavanaugh Aug 15 '12 at 21:25

You want to set up your recursive function like this:

function modified_dates($dir) {
    while ($read = readdir($dir)) 
    { 
        if ($read!='.' && $read!='..' && is_dir('directory/path/'.$read)) 
        { 
            echo $read." - ".date("m/d/Y H:i:s",filemtime("directory/path/".$read))."<br>";
            modified_dates($read);
        }
    }
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.