I have a folder that looks like this:

RootFolder
  Comp1
    Comp1_01042011.html
    Comp1_03062011.html
  Comp2
    Comp1_01042011.html
    Comp1_03062011.html

Each of the HTML files are in the form ComputerName_Date.html. Each of these files is places into a folder in the form ComputerName. I need to go into each folder and find the newest file (the most recent date) and store that name. So far my code is as follows:

$allFolders = scandir($baseDir);

for ($i = 2; $i < count($allFolders); $i++)
{
    $singleFolder = $allFolders[$i];
    $handle = opendir("$baseDir/$singleFolder");
    $tempFile = '';
    $newestFile = '';
    while ($file = readdir($handle)) 
    {
        if ($file !== '.' && $file !== '..')
        {
            if (strcmp($file, $tempFile) > 0)
                $newestFile = $file;
            $tempFile = $file;
            echo $newestFile . '<br>';
        }

    }
}

The problem I am having is I am unsure how to stop the program in each of the folders named ComputerName. Right now, it scans every single folder that's in the base directory.

Thank for any help you can provide!

link|improve this question

What do you mean by "stop the program in each of the folders named ComputerName"? – sdleihssirhc Aug 17 '11 at 19:19
I want it to enter the folder named Comp1, look at the files in that directory, then tell me the newest one. Then go up a level, enter the folder Comp2, tell me the newest file, go back up a level. And proceed that way. I need to know the newest file in each ComputerName subfolder. – DotNaBox Aug 17 '11 at 19:22
And why doesn't this do that? What's going wrong? – sdleihssirhc Aug 17 '11 at 19:23
As it stands, it compares every HTML file to one another from the base directory. So it will computer Comp1_date1 with Comp1_date2 as it should, but then it will continue and compare it with Comp2_date1, comp2_date2, comp3, etc. – DotNaBox Aug 17 '11 at 19:25
Oh my. I see what I need to do. I just need to move my "echo $newestFile . '<br>';" to be outside the while loop. No wonder you thought it looked fine. – DotNaBox Aug 17 '11 at 19:29
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.