I want to check in PHP that whether folder present in the C:\Program Files\multichain drive whoever open my website I have tried by file_exist but its not working. Its seems file_exist check only local system. I have written function as : 
function checkMultichainFileLocation(){
  if (!file_exists(C:\Program Files\multichain)) {
     return false;
   } else {
      return true;
   }
}
Is there anyway is it possible to check? Thanks in advance.
 
    