Lines Matching refs:path
23 echo "Testing file with relative path:\n";
25 $path = './' . $uniqueBaseName . '_file.txt';
27 create_file($path, $perms);
28 clearstatcache(true, $path);
30 if (is_readable($path) == $exp) {
33 var_dump(is_readable($path), $exp);
36 delete_file($path);
39 echo "Testing directory with relative path:\n";
40 $path = $uniqueBaseName . '_dir';
43 create_dir($path, $perms);
44 clearstatcache(true, $path);
46 if (is_readable($path) == $exp) {
49 var_dump(is_readable($path), $exp);
52 delete_dir($path);
57 Testing file with relative path:
62 Testing directory with relative path: