Lines Matching refs:file

2 Test copy() function: usage variations - destination file names(white spaces)
11 Description: Makes a copy of the file source to dest.
15 /* Test copy() function: In creation of destination file names containing white spaces
19 echo "*** Test copy() function: destination file names containing whitespaces ***\n";
26 /* array of destination file names */
30 "copy variation3.tmp", //file name containing blank space
31 " copy_variation3.tmp", //file name starts with blank space
33 " ", //blank space as file name
36 echo "Size of the source file before copy operation => ";
40 echo "\n-- Now applying copy() on source file to create copies --";
50 echo "Existence of destination file => ";
53 echo "Destination file name => ";
57 echo "Size of source file => ";
61 echo "Size of destination file => ";
79 *** Test copy() function: destination file names containing whitespaces ***
80 Size of the source file before copy operation => int(1500)
82 -- Now applying copy() on source file to create copies --
85 Existence of destination file => bool(true)
86 Destination file name => copy variation3.tmp
87 Size of source file => int(1500)
88 Size of destination file => int(1500)
92 Existence of destination file => bool(true)
93 Destination file name => copy_variation3.tmp
94 Size of source file => int(1500)
95 Size of destination file => int(1500)
99 Existence of destination file => bool(true)
100 Destination file name => copy variation3.tmp
101 Size of source file => int(1500)
102 Size of destination file => int(1500)
106 Existence of destination file => bool(true)
107 Destination file name =>
108 Size of source file => int(1500)
109 Size of destination file => int(1500)