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 => ";
81 *** Test copy() function: checking case sensitivity in creation of destination file names ***
82 Size of the source file before copy operation => int(1500)
84 -- Now applying copy() on source file to create copies --
87 Existence of destination file => bool(true)
88 Destination file name => %s/COPY.tmp
89 Size of source file => int(1500)
90 Size of destination file => int(1500)
94 Existence of destination file => bool(true)
95 Destination file name => %s/COPY.TMP
96 Size of source file => int(1500)
97 Size of destination file => int(1500)
101 Existence of destination file => bool(true)
102 Destination file name => %s/CopY.TMP
103 Size of source file => int(1500)
104 Size of destination file => int(1500)
106 Warning: unlink(%s/COPY.TMP): No such file or directory in %s on line %d
108 Warning: unlink(%s/CopY.TMP): No such file or directory in %s on line %d