Lines Matching refs:file

2 Test copy() function: usage variations - destination file names(case sensitive)
11 Description: Makes a copy of the file source to dest.
15 /* Test copy() function: Checking case sensitivity in creation of destination file names
19 echo "*** Test copy() function: checking case sensitivity in creation of destination file names ***…
26 /* array of destination file names */
35 echo "Size of the source file before copy operation => ";
39 echo "\n-- Now applying copy() on source file to create copies --";
49 echo "Existence of destination file => ";
52 echo "Destination file name => ";
56 echo "Size of source file => ";
60 echo "Size of destination file => ";
83 *** Test copy() function: checking case sensitivity in creation of destination file names ***
84 Size of the source file before copy operation => int(1500)
86 -- Now applying copy() on source file to create copies --
89 Existence of destination file => bool(true)
90 Destination file name => %s/COPY.tmp
91 Size of source file => int(1500)
92 Size of destination file => int(1500)
96 Existence of destination file => bool(true)
97 Destination file name => %s/COPY.TMP
98 Size of source file => int(1500)
99 Size of destination file => int(1500)
103 Existence of destination file => bool(true)
104 Destination file name => %s/CopY.TMP
105 Size of source file => int(1500)
106 Size of destination file => int(1500)
108 Warning: unlink(%s/COPY.TMP): No such file or directory in %s on line %d
110 Warning: unlink(%s/CopY.TMP): No such file or directory in %s on line %d