[snip] Is there anyway to use CHMOD:
chmod ("/somedir/somefile", 0755);
but have it set all files, folders etc to the CHMOD setting I want?
I have a folder, and within that, I wanna quickly, jsut set it all to CHMOD 777.
all sub DIR's and files etc...
can it be done simply?
E.G. : chmod ("/somedir/%", 0755); [/snip]
Danger, Danger!! [tm]
Yes you can, but 'tis not a swell idea. You can exec the chmod command
exec("chmod 0777 /directory/*");
Better : exec("chmod -R 0777 /directory");
You still cannot set all sub directory and files within those
permissions. Best to loop through and set each as needed, don't forget
to cahnge them back.
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php