hi guys, please how do u delete a directory without getting the "Permission Denied" error.
please note that the directory is CHMOD 777 but it still won't delete.
Thank You
Printable View
hi guys, please how do u delete a directory without getting the "Permission Denied" error.
please note that the directory is CHMOD 777 but it still won't delete.
Thank You
have you tried rmdir()? or tried to chmod() the dir and then delete.
thanks dclamp, that did it, i was initially using the unlink() function.
once again thank you.
unlink is for files.
files are all i have had to delete programmatically, i've never spent time on rmdir() because i actually thought unlink() and rmdir() will delete a folder.
but of course rmdir() should remove directory.
once again, Thank You.