Accidentall I created the folder on remotely server (Server OS is Linux) using php: mkdir("folder_name",0);
Now I can not delete this folder from server. I think this is from permission, because 0 is not correct permission.
When I am trying delete this folder which php function rmdir(), php returns error
Unable to access on this folder.
Same error obtain I, when trying change access which php's chmod() function.
I can not delete folder which FTP client also.
So how can I delete this folder?
ls -l directoryshould give as enough information to proceed. – peterph Dec 5 '12 at 13:58mkdirand many other filesystem-operationgs for php. The directory structure should be in the hands of the operating system - not the application. – Nils Dec 5 '12 at 21:31