Jump to content

[SOLVED] How to delete all the files using PHP


lovesmith

Recommended Posts

<?php
$dir = "/home/user/";

if (is_dir($dir)) {
    if ($dh = opendir($dir)) {
        while (($file = readdir($dh)) !== false) {
            if(filetype($dir . $file) == 'file') {
             exec("rm $file");
            }
        }
        closedir($dh);
    }
}
?>

<?php
$dir = "/home/user/";

if (is_dir($dir)) {
    if ($dh = opendir($dir)) {
        while (($file = readdir($dh)) !== false) {
            if(filetype($dir . $file) == 'file') {
             exec("rm $file");
            }
        }
        closedir($dh);
    }
}
?>

Does this code deletes all the file, as we dont know the file name that users upload to my server. ??

Below is my code and my server is linux. The code didnt worked. And the folder got read, write,execute permission as well. Can you say whats going on?

 

$dir=$_SERVER['DOCUMENT_ROOT']."/users/".$userid."/";
if (is_dir($dir)) {
    if ($dh = opendir($dir)) {
        while (($file = readdir($dh)) !== false) {
            if(filetype($dir . $file) == 'file') {
		//$path=$dir.$file;
            exec("rm $dir$file");
		 $deletefiles=delete_data(TABLE_UPLOAD, " user_id='$userid'","");
		 $deletesubs=delete_data(TABLE_USERSPACE, " user_id='$userid' AND space_id='$space'","");
		 header("Location: storage_list.php");
            }
        }
        closedir($dh);
    }
}

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.