Code: Select all
$filename = 'prepre.mov';
if (file_exists($filename)) {
echo "The file $filename exists";
} else {
echo "The file $filename does not exist";
}it finds the file... but when i run the same script with
Code: Select all
$filename = '../users/bucky/video/prepre.mov';