Hi...
I want to find out whether a file is existing or not
The file is stored on another machine in the same network .
I tried the following code.But always showing "The file is not existing".
<?php $filename = 'file://192.168.0.15/E:/PDF/p.pdf';
if (file_exists($filename))
{
echo "The file $filename exists";
} else
{
echo "The file $filename does not exist";
}
?>
Does anyone know how to do this?