Hello All,
I am having a problem with saving a PDF file into a server location. The computer I am using is not the server machine and all the directories are using mapped path. So when i try to save a file into "\\\\10.10.11.9\\t2m.net\\html\\books\\IISbook .pdf " it says: The file doesn't exist.
The code is as below:
PHP Code:
<?php
$filename = '\\\\10.10.11.9\\t2m.net\\html\\books\\IISbook.pdf';
if (file_exists($filename))
{
echo "The file $filename exists";
}
else
{
echo "The file $filename does not exist";
}
?>
And the output is :
Code:
The file \\\\10.10.11.9\\t2m.net\\html\\books\\IISbook.pdf does not exist