Lines Matching refs:dir
2 Test copy() function: usage variations - src as dir and dest as an existing file(Bug #42243)
5 /* Test copy(): Trying to copy dir to an existing file */
7 echo "*** Test copy() function: Trying to copy dir to file ***\n";
11 $dir = $file_path."/copy_variation13";
12 mkdir($dir);
14 echo "*** Testing copy() in copying dir to file ***\n";
15 var_dump( copy($dir, $file) );
18 var_dump( file_exists($dir) );
20 var_dump( is_file($dir) );
21 var_dump( is_dir($dir) );
27 var_dump( filesize($dir) );
37 *** Test copy() function: Trying to copy dir to file ***
38 *** Testing copy() in copying dir to file ***