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!