Answers for "how to delete directory in php"

PHP
0

php delete a folder

function deleteDirectory($dir) {
    if (!file_exists($dir)) {
        return true;
    }

    if (!is_dir($dir)) {
        return unlink($dir);
    }

    foreach (scandir($dir) as $item) {
        if ($item == '.' || $item == '..') {
            continue;
        }

        if (!deleteDirectory($dir . DIRECTORY_SEPARATOR . $item)) {
            return false;
        }

    }

    return rmdir($dir);
}
Posted by: Guest on March-10-2021
2

php delete directory

rmdir ( string $dirname , resource $context = ? ) : bool
Posted by: Guest on January-12-2021
0

get delete folder in php

$dirPath = "../images/productimages/$productid";
	if (is_dir($dirPath)) {
		shell_exec("rm -rf " . $dirPath);
		rrmdir($dirPath);
	}

// call function

function rrmdir($src) {
    $dir = opendir($src);
    while(false !== ( $file = readdir($dir)) ) {
        if (( $file != '.' ) && ( $file != '..' )) {
            $full = $src . '/' . $file;
            if ( is_dir($full) ) {
                rrmdir($full);
            }
            else {
                unlink($full);
            }
        }
    }
    closedir($dir);
    rmdir($src);
}
Posted by: Guest on June-15-2021

Code answers related to "how to delete directory in php"

Browse Popular Code Answers by Language