Lines Matching refs:file_path
12 $file_path = __DIR__;
18 $fp = fopen($file_path."/rename_variation4.tmp", "w");
21 var_dump( rename($file_path."/rename_variation4.tmp", $file_path."/12345") );
23 var_dump( file_exists($file_path."/rename_variation4.tmp" ) ); // expecting false
24 var_dump( file_exists($file_path."/12345" ) ); // expecting true
26 unlink($file_path."/12345");
28 mkdir($file_path."/rename_variation4_dir");
31 var_dump( rename($file_path."/rename_variation4_dir/", $file_path."/12345") );
33 var_dump( file_exists($file_path."/rename_variation4_dir" ) ); // expecting false
34 var_dump( file_exists($file_path."/12345" ) ); // expecting true
40 $file_path = __DIR__;
41 rmdir($file_path."/12345");