Home
last modified time | relevance | path

Searched refs:file_path (Results 1 – 25 of 345) sorted by relevance

12345678910>>...14

/PHP-7.4/ext/standard/tests/file/
H A Drealpath_basic4.phpt5 $file_path = __DIR__;
6 @mkdir("$file_path/realpath_basic4/home/test", 0777, true);
7 @symlink("$file_path/realpath_basic4/home", "$file_path/realpath_basic4/link1");
8 @symlink("$file_path/realpath_basic4/link1", "$file_path/realpath_basic4/link2");
9 echo "1. " . realpath("$file_path/realpath_basic4/link2") . "\n";
14 $file_path = __DIR__;
15 unlink("$file_path/realpath_basic4/link2");
16 unlink("$file_path/realpath_basic4/link1");
17 rmdir("$file_path/realpath_basic4/home/test");
18 rmdir("$file_path/realpath_basic4/home");
[all …]
H A Dis_dir_variation2.phpt18 $file_path = __DIR__;
22 $dirname = $file_path."/is_dir_variation2";
28 symlink($file_path."/is_dir_variation2", $file_path."/is_dir_variation2_symlink");
33 link($file_path."/is_dir_variation2", $file_path."/is_dir_variation2_link"); //Not permitted to cre…
39 $filename = $file_path."/is_dir_variation2.tmp";
45 symlink($file_path."/is_dir_variation2.tmp", $file_path."/is_dir_variation2_symlink.tmp");
50 link($file_path."/is_dir_variation2.tmp", $file_path."/is_dir_variation2_link.tmp");
58 $file_path = __DIR__;
60 unlink($file_path."/is_dir_variation2_symlink");
72 unlink($file_path."/is_dir_variation2.tmp");
[all …]
H A Drename_variation2-win32.phpt17 $file_path = __DIR__;
18 mkdir("$file_path/rename_variation2_dir");
22 $fp = fopen($file_path."/rename_variation2.tmp", "w");
26 var_dump( rename($file_path."/rename_variation2.tmp", $file_path."/12345") );
32 unlink($file_path."/12345");
35 var_dump( rename($file_path."/rename_variation2_dir/", $file_path."/12345") );
41 rmdir($file_path."/12345");
47 $file_path = __DIR__;
48 unlink($file_path."/rename_variation2_link.tmp");
49 unlink($file_path."/rename_variation2.tmp");
[all …]
H A Dcopy_variation7.phpt17 $file_path = __DIR__;
20 $file = $file_path."/copy_variation7.tmp";
25 $symlink = $file_path."/copy_variation7_symlink.tmp";
26 $hardlink = $file_path."/copy_variation7_hardlink.tmp";
41 var_dump( is_link($file_path."/copy_copy_variation7_symlink.tmp") );
58 $file_path = __DIR__;
59 unlink($file_path."/copy_copy_variation7_symlink.tmp");
60 unlink($file_path."/copy_copy_variation7_hardlink.tmp");
61 unlink($file_path."/copy_variation7_symlink.tmp");
62 unlink($file_path."/copy_variation7_hardlink.tmp");
[all …]
H A Drename_variation4.phpt12 $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") );
34 var_dump( file_exists($file_path."/12345" ) ); // expecting true
40 $file_path = __DIR__;
[all …]
H A Dbug65701.phpt7 $file_path = __DIR__ . "/bug65701/";
9 if (!is_dir($file_path)) {
10 mkdir($file_path);
13 $src = $file_path . '/srcbug65701_file.txt';
14 $dst = tempnam($file_path, 'dstbug65701_file.txt');
23 $file_path = __DIR__ . "/bug65701/";
24 foreach (scandir($file_path) as $file) {
26 unlink($file_path . $file);
29 rmdir($file_path);
H A Dfileinode_variation.phpt18 $file_path = __DIR__;
19 $file1 = $file_path."/fileinode1_variation.tmp";
62 fclose( fopen("$file_path/old.txt", "w") );
66 rename("$file_path/old.txt", "$file_path/new.txt");
69 unlink("$file_path/new.txt");
72 mkdir("$file_path/dir");
73 print( fileinode("$file_path/dir") )."\n";
76 mkdir("$file_path/dir/subdir");
81 print( fileinode(b"$file_path/dir") )."\n";
85 rmdir("$file_path/dir/subdir");
[all …]
H A Dfilegroup_variation1.phpt18 $file_path = __DIR__;
19 fclose( fopen($file_path."/filegroup_variation1.tmp", "w") );
23 symlink($file_path."/filegroup_variation1.tmp", $file_path."/filegroup_variation1_symlink.tmp");
24 var_dump( filegroup($file_path."/filegroup_variation1_symlink.tmp") ); //expected true
28 link($file_path."/filegroup_variation1.tmp", $file_path."/filegroup_variation1_link.tmp");
29 var_dump( filegroup($file_path."/filegroup_variation1_link.tmp") ); // expected: true
36 $file_path = __DIR__;
37 unlink($file_path."/filegroup_variation1_symlink.tmp");
38 unlink($file_path."/filegroup_variation1_link.tmp");
39 unlink($file_path."/filegroup_variation1.tmp");
H A Dfileowner_variation1.phpt19 $file_path = __DIR__;
20 fclose( fopen($file_path."/fileowner_variation1.tmp", "w") );
24 symlink($file_path."/fileowner_variation1.tmp", $file_path."/fileowner_variation1_symlink.tmp");
25 var_dump( fileowner($file_path."/fileowner_variation1_symlink.tmp") ); //expected true
29 link($file_path."/fileowner_variation1.tmp", $file_path."/fileowner_variation1_link.tmp");
30 var_dump( fileowner($file_path."/fileowner_variation1_link.tmp") ); // expected: true
37 $file_path = __DIR__;
38 unlink($file_path."/fileowner_variation1_symlink.tmp");
39 unlink($file_path."/fileowner_variation1_link.tmp");
40 unlink($file_path."/fileowner_variation1.tmp");
H A Dfileperms_variation1.phpt18 $file_path = __DIR__;
19 fclose( fopen($file_path."/fileperms_variation1.tmp", "w") );
23 symlink($file_path."/fileperms_variation1.tmp", $file_path."/fileperms_variation1_symlink.tmp");
24 var_dump( fileperms($file_path."/fileperms_variation1_symlink.tmp") ); //expected true
28 link($file_path."/fileperms_variation1.tmp", $file_path."/fileperms_variation1_link.tmp");
29 var_dump( fileperms($file_path."/fileperms_variation1_link.tmp") ); // expected: true
36 $file_path = __DIR__;
37 unlink($file_path."/fileperms_variation1_symlink.tmp");
38 unlink($file_path."/fileperms_variation1_link.tmp");
39 unlink($file_path."/fileperms_variation1.tmp");
H A Dis_file_variation2.phpt17 $file_path = __DIR__;
18 fclose( fopen($file_path."/is_file_variation2.tmp", "w") );
22 symlink($file_path."/is_file_variation2.tmp", $file_path."/is_file_variation2_symlink.tmp");
23 var_dump( is_file($file_path."/is_file_variation2_symlink.tmp") ); //expected true
27 link($file_path."/is_file_variation2.tmp", $file_path."/is_file_variation2_link.tmp");
28 var_dump( is_file($file_path."/is_file_variation2_link.tmp") ); // expected: true
35 $file_path = __DIR__;
36 unlink($file_path."/is_file_variation2_symlink.tmp");
37 unlink($file_path."/is_file_variation2_link.tmp");
38 unlink($file_path."/is_file_variation2.tmp");
H A Dfileinode_variation1.phpt19 $file_path = __DIR__;
20 fclose( fopen($file_path."/fileinode_variation1.tmp", "w") );
24 symlink($file_path."/fileinode_variation1.tmp", $file_path."/fileinode_variation1_symlink.tmp");
25 var_dump( fileinode($file_path."/fileinode_variation1_symlink.tmp") ); //expected true
29 link($file_path."/fileinode_variation1.tmp", $file_path."/fileinode_variation1_link.tmp");
30 var_dump( fileinode($file_path."/fileinode_variation1_link.tmp") ); // expected: true
37 $file_path = __DIR__;
38 unlink($file_path."/fileinode_variation1_symlink.tmp");
39 unlink($file_path."/fileinode_variation1_link.tmp");
40 unlink($file_path."/fileinode_variation1.tmp");
H A Ddisk_total_space_variation.phpt14 $file_path = __DIR__;
26 mkdir($file_path.$dir);
30 $file_path.$dir,
31 $file_path."/.".$dir,
34 $file_path."".$dir."/",
35 $file_path."/.".$dir."/",
38 $file_path.$dir."//",
39 $file_path."/.".$dir."//",
40 $file_path."/./".$dir."//",
43 $file_path.$dir.chr(0),
[all …]
H A Dis_executable_variation2.phpt21 $file_path = __DIR__;
22 mkdir("$file_path/is_executable_variation2");
43 "$file_path/is_executable_variation21.tmp",
44 "$file_path/is_executable_variation22.tmp",
45 "$file_path/is_executable_variation23.tmp",
46 "$file_path/is_executable_variation24.tmp",
47 "$file_path/is_executable_variation25.tmp",
48 "$file_path/is_executable_variation26.tmp",
49 "$file_path/is_executable_variation27.tmp",
50 "$file_path/is_executable_variation28.tmp",
[all …]
H A Dis_readable_variation2.phpt21 $file_path = __DIR__;
22 mkdir("$file_path/is_readable_variation2");
43 "$file_path/is_readable_variation21.tmp",
44 "$file_path/is_readable_variation22.tmp",
45 "$file_path/is_readable_variation23.tmp",
46 "$file_path/is_readable_variation24.tmp",
47 "$file_path/is_readable_variation25.tmp",
48 "$file_path/is_readable_variation26.tmp",
49 "$file_path/is_readable_variation27.tmp",
50 "$file_path/is_readable_variation28.tmp",
[all …]
H A Dis_writable_variation2.phpt23 $file_path = __DIR__;
24 mkdir("$file_path/is_writable_variation2");
46 "$file_path/is_writable_variation21.tmp",
47 "$file_path/is_writable_variation22.tmp",
48 "$file_path/is_writable_variation23.tmp",
49 "$file_path/is_writable_variation24.tmp",
50 "$file_path/is_writable_variation25.tmp",
51 "$file_path/is_writable_variation26.tmp",
52 "$file_path/is_writable_variation27.tmp",
53 "$file_path/is_writable_variation28.tmp",
[all …]
H A Dfilesize_variation2-win32.phpt16 $file_path = __DIR__;
17 require($file_path."/file.inc");
23 mkdir( $file_path."/filesize_variation2");
24 var_dump( filesize( $file_path."/filesize_variation2"));
29 var_dump( filesize( $file_path."/filesize_variation2"));
33 delete_files($file_path."/filesize_variation2", 1, "filesize_variation", 2);
36 mkdir( $file_path."/filesize_variation2/filesize_variation2_sub");
49 var_dump( filesize( $file_path."/filesize_variation2"));
62 $file_path = __DIR__;
64 rmdir($file_path."/filesize_variation2/filesize_variation2_sub");
[all …]
H A Dfilesize_variation2.phpt16 $file_path = __DIR__;
17 require($file_path."/file.inc");
23 mkdir( $file_path."/filesize_variation2");
24 var_dump( filesize( $file_path."/filesize_variation2"));
29 var_dump( filesize( $file_path."/filesize_variation2"));
33 delete_files($file_path."/filesize_variation2", 1, "filesize_variation");
36 mkdir( $file_path."/filesize_variation2/filesize_variation2_sub");
49 var_dump( filesize( $file_path."/filesize_variation2"));
62 $file_path = __DIR__;
64 rmdir($file_path."/filesize_variation2/filesize_variation2_sub");
[all …]
H A Dglob_variation2.phpt9 $file_path = __DIR__;
15 mkdir("$file_path/$dir_name");
18 $fp = fopen("$file_path/$dir_name/file.text", "w");
23 chdir("$file_path/$dir_name");
27 chdir("$file_path");
35 $file_path = __DIR__;
36 unlink("$file_path/glob_test/file.text");
37 rmdir("$file_path/glob_test/");
H A Ddisk_free_space_variation.phpt12 $file_path = __DIR__;
24 mkdir($file_path.$dir);
28 $file_path.$dir,
29 $file_path."/.".$dir,
32 $file_path."".$dir."/",
33 $file_path."/.".$dir."/",
36 $file_path.$dir."//",
37 $file_path."/.".$dir."//",
38 $file_path."/./".$dir."//",
41 $file_path.$dir.chr(0),
[all …]
H A Dfile_get_contents_error.phpt14 $file_path = __DIR__;
15 include($file_path."/file.inc");
25 create_files($file_path, 1, "text", 0755, 100, "w", "file", 1, "byte");
26 $file_handle = fopen($file_path."/file_put_contents_error.tmp", "w");
32 delete_files($file_path, 1);
34 unlink($file_path."/file_put_contents_error.tmp");
40 $file_path = __DIR__;
41 if(file_exists($file_path."/file_put_contents_error.tmp")) {
42 unlink($file_path."/file_put_contents_error.tmp");
44 if(file_exists($file_path."/file_put_contents1.tmp")) {
[all …]
H A Drename_variation-win32.phpt18 $file_path = __DIR__;
19 mkdir("$file_path/rename_variation");
24 "$file_path/rename_variation/rename_variation.tmp",
27 "$file_path/rename_variation/rename_variation.tmp/",
30 "$file_path/rename_variation//rename_variation.tmp",
31 "$file_path//rename_variation//rename_variation.tmp",
53 rmdir("$file_path/rename_variation");
59 $file_path = __DIR__;
60 unlink($file_path."/rename_variation_link.tmp");
61 unlink($file_path."/rename_variation.tmp");
[all …]
H A Dis_file_variation1.phpt13 $file_path = __DIR__;
16 $filename = $file_path."/is_file_variation1.tmp";
24 $file_handle = fopen( $file_path."/is_file_variation1.tmp", "r");
27 var_dump( is_file($file_path."/is_file_variation1.tmp") ); // expected true
29 unlink($file_path."/is_file_variation1.tmp");
33 fclose( fopen($file_path."/is_file_variation1.tmp", "w") );
34 var_dump( is_file($file_path."/is_file_variation1.tmp") ); //expected true
36 unlink($file_path."/is_file_variation1.tmp");
39 touch($file_path."/is_file_variation1.tmp");
40 var_dump( is_file($file_path."/is_file_variation1.tmp") ); // expected true
[all …]
H A Ddisk_total_space_basic.phpt14 $file_path = __DIR__;
17 var_dump( disk_total_space($file_path) );
22 mkdir($file_path.$dir);
23 var_dump( disk_total_space($file_path.$dir) );
24 $fh = fopen($file_path.$dir."/disk_total_space.tmp", "w");
30 var_dump( disk_total_space($file_path.$dir) );
36 $file_path = __DIR__;
37 unlink($file_path."/disk_total_space/disk_total_space.tmp");
38 rmdir($file_path."/disk_total_space");
H A Dfile_get_contents_file_put_contents_basic.phpt15 $file_path = __DIR__;
16 include($file_path."/file.inc");
24 file_put_contents( $file_path.$file_name, $text_buffer );
26 var_dump( file_get_contents($file_path.$file_name) );
31 file_put_contents( $file_path.$file_name, "");
32 var_dump( file_get_contents( $file_path.$file_name ) );
38 $file_path = __DIR__;
39 unlink($file_path."/file_put_contents.tmp");
40 unlink($file_path."/file_put_contents1.tmp");

Completed in 41 milliseconds

12345678910>>...14