We can check the availability of a folder using PHP as follows :
if(file_exists ( "folder_name" ))
{
echo "Folder Exists";
}
else
{
echo "Folder Not Exists";
}
We can check the availability of a folder using PHP as follows :
if(file_exists ( "folder_name" ))
{
echo "Folder Exists";
}
else
{
echo "Folder Not Exists";
}