View Single Post
Old 02-27-2010, 01:09 AM   #1 (permalink)
Peuplarchie
The Acquainted
 
Peuplarchie's Avatar
 
Join Date: May 2008
Location: Québec
Posts: 104
Thanks: 10
Peuplarchie is on a distinguished road
Application Check if specific folder contains files, folders, both or none ?

Good day to you all,
is there a way to check if a specific folder contains: files, folder, both or none ?

I read my folder with Glob, like my code here :

PHP Code:

<?PHP
function globDir($dir)
{
   
$files glob("$dir/*"GLOB_ONLYDIR);
   
     if(!empty(
$files))
   {
      echo 
"<ul>\n";

      foreach(
$files as $file)
      {
         echo 
"<li><b>"basename($file)."</b>\n";
         
globDir($file);
         echo 
"</li>\n";
      }
      echo 
"</ul>\n";
   }
}
globDir('Photos');
?>

The only thing I have really found is how to find if a specific file exists.

I'm trying to find out if a specific folder contains : files, folders, both, none.
It would return the appropriate word accordingly.

Thanks and take care!
__________________
That's why we are not alone on earth... let's build !
Peuplarchie is offline  
Reply With Quote