Jump to content

Break if no file found in directory


Peuplarchie

Recommended Posts

Good day to you,

              I have a function which return an array of files.

              I would need it to break if there is no file in the directory.

 

Here is the code :

function compileList($extensions)
{
     if ($handle = opendir('.')) {
   while (false !== ($file = readdir($handle)))
      {
          $ext = strtolower(end(explode('.', $file)));
       
          if (in_array($ext, $extensions) AND $file != "." AND $file != "..")
              {
                  $files[$file]=implode(file($file));
              }
       }
  closedir($handle);
  }
  return $files;
         
}

 

Thanks !

 

 

 

Link to comment
Share on other sites

<pre>
<?php
function compileList2($extensions){
  $extlist=implode(array_merge(array_map('strtolower',$extensions),array_map('strtoupper',$extensions)),',');
  $ret=glob('*.{'.$extlist.'}',GLOB_BRACE);
  if(!isset($ret) || (isset($ret) && count($ret)==0)){
    echo "No files found.";
    return NULL;
  } else {
    return $ret;
  }
}
echo print_r(compileList2(array('txt','php')),true);
echo print_r(compileList2(array('does_not_exist')),true);
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.