Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using the following script to read a directory. If there is no file in the directory it should say empty. The problem is, it just keeps saying the directory is empty even though there ARE files inside and vice versa.

<?php
$pid    =       $_GET["prodref"];
$dir    =       '/assets/'.$pid.'/v';
$q      =       (count(glob("$dir/*")) === 0) ? 'Empty' : 'Not empty';

    if ($q="Empty")
    {

        echo "the folder is empty"; 

    }else{

        echo "the folder is NOT empty";

    }
?>
share|improve this question
1  
It's just a typo in your if statement. Use == (compare) instead of the single = (assign). – Baszz Sep 21 '11 at 9:56

4 Answers

up vote 18 down vote accepted

It seems that you need scandir instead of glob, as glob can't see unix hidden files.

<?php
$pid = basename($_GET["prodref"]); //let's sanitize it a bit
$dir = "/assets/$pid/v";

if (is_dir_empty($dir)) {
  echo "the folder is empty"; 
}else{
  echo "the folder is NOT empty";
}

function is_dir_empty($dir) {
  if (!is_readable($dir)) return NULL; 
  return (count(scandir($dir)) == 2);
}
?>

Note that this code is not the summit of efficiency, as it's unnecessary to read all the files only to tell if directory is empty. So, the better version would be

function is_dir_empty($dir) {
  if (!is_readable($dir)) return NULL; 
  $handle = opendir($dir);
  while (false !== ($entry = readdir($handle))) {
    if ($entry != "." && $entry != "..") {
      return FALSE;
    }
  }
  return TRUE;
}

By the way, do not use words to substitute boolean values. The very purpose of the latter is to tell you if something empty or not. An

a === b

expression already returns Empty or Non Empty in terms of programming language, FALSE or TRUE respectively - so, you can use the very result in control structures like IF() without any intermediate values

share|improve this answer
1  
I think both our code is wrong because I removed all files from the folder and it still says the folder is not empty... is there a way to check for hidden files like thumbs.db etc in linux?? – TheBlackBenzKid Sep 21 '11 at 10:15
I think the FTP folder is say .. and . in the file is empty. How can I check if and remove the .. and thumbs.db etc?? – TheBlackBenzKid Sep 21 '11 at 10:20
glob doesn't support linux hidden files. if you want them you have to go for openir solution like in the deleted answer – Your Common Sense Sep 21 '11 at 10:22
it seems you need scandir instead of glob. – Your Common Sense Sep 21 '11 at 10:25
1  
Do create testing environment. create empty directory in the same folder where script is. make $dir = 'testfolder'; manually. then run this code. debug is printing out as much information as possible to see what is going wrong. $dir = 'testfolder';var_dump(scan_dir($dir)); will tell you what is in this directory – Your Common Sense Sep 21 '11 at 11:05
show 5 more comments

use

if ($q == "Empty")

instead of

if ($q="Empty")
share|improve this answer

Probably because of assignment operatior in if statement.

Change:

if ($q="Empty")

To:

if ($q=="Empty")
share|improve this answer

Try this:

<?php
$dirPath = "Add your path here";

$destdir = $dirPath;

$handle = opendir($destdir);
$c = 0;
while ($file = readdir($handle)&& $c<3) {
    $c++;
}

if ($c>2) {
    print "Not empty";
} else {
    print "Empty";
} 

?>
share|improve this answer
Thanks! I wrote it quite quickly and its my first post here @Piotr Nowicki – Drmzindec Nov 23 '11 at 10:13
Sure mate, it's just my civic duty ;-) Welcome to StackOverflow! – Piotr Nowicki Nov 23 '11 at 11:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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