Answers for "delete file from folder php"

PHP
2

delete file using php

/*
Deleting files is a concept in file handeling of PHP
We can remove or delete the file from real folder path using below code
*/

unlink($Your_file_path);   // direct deleting the file

/* Delete file if its exist in folder */

if (file_exists($Your_file_path)) {
  unlink($Your_file_path);
} 

/*
I hope it will help you.
Namaste
*/
Posted by: Guest on May-06-2020
3

delete file in php

unlink(filepath);
Posted by: Guest on January-23-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 "delete file from folder php"

Browse Popular Code Answers by Language