I would like to delete a file that is found in my localhost.
localhost/project/folder/file_to_delete
I\'m using codeigniter for this.
to delete file use
unlink($file_name);
or to delete directory use
rmdir($dir);