Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can't seem to get this function to delete all my files and folders in a specific directory can someone help me fix this problem?

Here is my code.

$apps = 9;
$dirname = './members/' . $apps . '/';
function delete_directory($dirname) {
   if (is_dir($dirname))
      $dir_handle = opendir($dirname);
   if (!$dir_handle)
      return false;
   while($file = readdir($dir_handle)) {
      if ($file != "." && $file != "..") {
         if (!is_dir($dirname."/".$file))
            unlink($dirname."/".$file);
         else
            delete_directory($dirname.'/'.$file);    
      }
   }
   closedir($dir_handle);
   rmdir($dirname);
   return true;
}
share|improve this question
1  
What happens when you try running it? What errors do you encounter? Does the user your PHP script is running as have permissions to delete the files? – ceejayoz Oct 20 '10 at 13:35
yes I have permission, but nothing happens no error no nothing. – HELP Oct 20 '10 at 13:36
Your function looks fine..are you sure you are calling it right ? – codaddict Oct 20 '10 at 13:40
1  
You can call is as: delete_directory($dirname); after you set the value of $dirname in line 2. – codaddict Oct 20 '10 at 13:43
1  
@codaddict your a life saver thanks it works now. – HELP Oct 20 '10 at 13:47
show 2 more comments

3 Answers

up vote 2 down vote accepted

Your function looks fine.

I guess you are not calling it correctly. One way to call it is:

$apps = 9;
$dirname = './members/' . $apps . '/';
delete_directory($dirname);

function delete_directory($dirname) {
.....
share|improve this answer
function EmptyDir($dir) 
{
    $handle=opendir($dir);
    while (($file = readdir($handle))!==false) {
        unlink($dir.'/'.$file);
    }
    closedir($handle);
}

EmptyDir('yourdir'); 
share|improve this answer

Should the initial directory have a trailing slash?

$dirname = './members/' . $apps;
share|improve this answer
That is fine. You can have any number of consecutive / in a path. For example: "foo/bar" is same as "foo///////bar" – codaddict Oct 20 '10 at 13: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.