Answers for "php delete files in directory"

PHP
10

php how to delete file

if(file_exists($file)) {
	unlink($file);
}
Posted by: Guest on January-13-2020
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
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
3

delete file in php

unlink(filepath);
Posted by: Guest on January-23-2021

Code answers related to "php delete files in directory"

Browse Popular Code Answers by Language