ok umm what i want to know is. is it possible to get php to check if a directory is chmoded to a particular permission? but i want to be able to use an if else command for example
if ( what ever direcory is chmoded to == 0777)
{
print ("directory is chmoded to 0777");
}
else
{
print ("your directory is not chmoded to 0777");
}
is it possble for php to do something like this? if not what other language might do it? if so how?