Hi all,
I'm making a small app that must check if a certain file exists in the client computer.
$file = "C:\\Windows\\System32\\rpnt.dll";
if (is_file($file)){
echo $file . " exists";
}else{
echo $file . " does not exist";
}
Can't make this work. Any solution out there?