Lines Matching refs:file

2 Test copy() function: usage variations - destination file names(numerics/strings)
5 /* Test copy() function: In creation of destination file names containing numerics/strings
9 echo "*** Test copy() function: destination file names containing numerics/strings ***\n";
16 /* array of destination file names */
20 "copy.tmp", //regular file name
22 ".tmp", //file name only with extension
23 "123.tmp", //file name starts with numeric and with regular extension
24 "copy_variation1.123", //file name with numeric extension
26 "123copy_variation1.tmp", //file name containing numeric & string
27 "copy_variation.tmp123", //file name containing string & numeric
28 chr(99).chr(111).chr(112).chr(121).chr(49).".tmp" //file name containing ASCII values
31 echo "Size of the source file before copy operation => ";
35 echo "\n-- Now applying copy() on source file to create copies --";
45 echo "Existence of destination file => ";
48 echo "Destination file name => ";
52 echo "Size of source file => ";
56 echo "Size of destination file => ";
72 *** Test copy() function: destination file names containing numerics/strings ***
73 Size of the source file before copy operation => int(1500)
75 -- Now applying copy() on source file to create copies --
78 Existence of destination file => bool(true)
79 Destination file name => %s/copy.tmp
80 Size of source file => int(1500)
81 Size of destination file => int(1500)
85 Existence of destination file => bool(true)
86 Destination file name => %s/copy_copy_variation1.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 => %s/.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 => %s/123.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 => %s/copy_variation1.123
108 Size of source file => int(1500)
109 Size of destination file => int(1500)
113 Existence of destination file => bool(true)
114 Destination file name => %s/123
115 Size of source file => int(1500)
116 Size of destination file => int(1500)
120 Existence of destination file => bool(true)
121 Destination file name => %s/123copy_variation1.tmp
122 Size of source file => int(1500)
123 Size of destination file => int(1500)
127 Existence of destination file => bool(true)
128 Destination file name => %s/copy_variation.tmp123
129 Size of source file => int(1500)
130 Size of destination file => int(1500)
134 Existence of destination file => bool(true)
135 Destination file name => %s/copy1.tmp
136 Size of source file => int(1500)
137 Size of destination file => int(1500)