Lines Matching refs:file_path
13 $file_path = __DIR__;
14 $file1 = $file_path."/fileinode1_variation.tmp";
15 $file2 = $file_path."/fileinode2_variation.tmp";
16 $link1 = $file_path."/fileinode1_variation_link.tmp";
17 $link2 = $file_path."/fileinode2_variation_link.tmp";
46 copy( $file1, $file_path."/fileinode1_variation_new.tmp");
49 print( fileinode( $file_path."/fileinode1_variation_new.tmp") )."\n";
51 unlink( $file_path."/fileinode1_variation_new.tmp");
57 fclose( fopen("$file_path/old.txt", "w") );
58 print( fileinode("$file_path/old.txt") )."\n";
61 rename("$file_path/old.txt", "$file_path/new.txt");
62 print( fileinode("$file_path/new.txt") )."\n";
64 unlink("$file_path/new.txt");
67 mkdir("$file_path/dir");
68 print( fileinode("$file_path/dir") )."\n";
71 mkdir("$file_path/dir/subdir");
72 print( fileinode("$file_path/dir/subdir") )."\n";
76 print( fileinode(b"$file_path/dir") )."\n";
78 print( fileinode(b"$file_path/dir/subdir") );
80 rmdir("$file_path/dir/subdir");
81 rmdir("$file_path/dir");