A mianowicie mam sobie folder z plikami i podfolderami.
I chciałbym do usunąć ale cały łącznie z tymi plikami i podfolderami.
Bo ulink() raczej tego nie zrobię.
Wie ktoś jak to zrobić

function recursive_remove_directory($directory, $empty=FALSE) { // if the path has a slash at the end we remove it here { } // if the path is not valid or is not a directory ... { // ... we return false and exit the function return FALSE; // ... if the path is not readable { // ... we return false and exit the function return FALSE; // ... else if the path is readable }else{ // we open the directory // and scan through the items inside { // if the filepointer is not the current directory // or the parent directory if($item != '.' && $item != '..') { // we build the new path to delete $path = $directory.'/'.$item; // if the new path is a directory { // we call this function with the new path recursive_remove_directory($path); // if the new path is a file }else{ // we remove the file } } } // close the directory // if the option to empty is not set to true if($empty == FALSE) { // try to delete the now empty directory { // return false if not possible return FALSE; } } // return success return TRUE; } }