home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _000f036eec37ea31da0d780aeff02111 next >
Text File  |  2000-03-23  |  8KB  |  176 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>File::Copy - Copy files or filehandles</TITLE>
  5. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> File::Copy - Copy files or filehandles</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <UL>
  26.  
  27.         <LI><A HREF="#special behaviour if syscopy is defined (os/2, vms and win32)">Special behaviour if <CODE>syscopy</CODE> is defined (OS/2, VMS and Win32)</A></LI>
  28.     </UL>
  29.  
  30.     <LI><A HREF="#return">RETURN</A></LI>
  31.     <LI><A HREF="#author">AUTHOR</A></LI>
  32. </UL>
  33. <!-- INDEX END -->
  34.  
  35. <HR>
  36. <P>
  37. <H1><A NAME="name">NAME</A></H1>
  38. <P>File::Copy - Copy files or filehandles</P>
  39. <P>
  40. <HR>
  41. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  42. <UL>
  43. <LI>Linux</LI>
  44. <LI>Solaris</LI>
  45. <LI>Windows</LI>
  46. </UL>
  47. <HR>
  48. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  49. <PRE>
  50.         use File::Copy;</PRE>
  51. <PRE>
  52.         copy("file1","file2");
  53.         copy("Copy.pm",\*STDOUT);'
  54.         move("/dev1/fileA","/dev2/fileB");</PRE>
  55. <PRE>
  56.         use POSIX;
  57.         use File::Copy cp;</PRE>
  58. <PRE>
  59.         $n=FileHandle->new("/dev/null","r");
  60.         cp($n,"x");'</PRE>
  61. <P>
  62. <HR>
  63. <H1><A NAME="description">DESCRIPTION</A></H1>
  64. <P>The File::Copy module provides two basic functions, <CODE>copy</CODE> and
  65. <CODE>move</CODE>, which are useful for getting the contents of a file from
  66. one place to another.</P>
  67. <UL>
  68. <LI>
  69. The <CODE>copy</CODE> function takes two
  70. parameters: a file to copy from and a file to copy to. Either
  71. argument may be a string, a FileHandle reference or a FileHandle
  72. glob. Obviously, if the first argument is a filehandle of some
  73. sort, it will be read from, and if it is a file <EM>name</EM> it will
  74. be opened for reading. Likewise, the second argument will be
  75. written to (and created if need be).
  76. <P><STRONG>Note that passing in
  77. files as handles instead of names may lead to loss of information
  78. on some operating systems; it is recommended that you use file
  79. names whenever possible.</STRONG>  Files are opened in binary mode where
  80. applicable.  To get a consistent behaviour when copying from a
  81. filehandle to a file, use <A HREF="../../lib/Pod/perlfunc.html#item_binmode"><CODE>binmode</CODE></A> on the filehandle.</P>
  82. <P>An optional third parameter can be used to specify the buffer
  83. size used for copying. This is the number of bytes from the
  84. first file, that wil be held in memory at any given time, before
  85. being written to the second file. The default buffer size depends
  86. upon the file, but will generally be the whole file (up to 2Mb), or
  87. 1k for filehandles that do not reference files (eg. sockets).</P>
  88. <P>You may use the syntax <CODE>use File::Copy "cp"</CODE> to get at the
  89. ``cp'' alias for this function. The syntax is <EM>exactly</EM> the same.</P>
  90. <P></P>
  91. <LI>
  92. The <CODE>move</CODE> function also takes two parameters: the current name
  93. and the intended name of the file to be moved.  If the destination
  94. already exists and is a directory, and the source is not a
  95. directory, then the source file will be renamed into the directory
  96. specified by the destination.
  97. <P>If possible, <CODE>move()</CODE> will simply rename the file.  Otherwise, it copies
  98. the file to the new location and deletes the original.  If an error occurs
  99. during this copy-and-delete process, you may be left with a (possibly partial)
  100. copy of the file under the destination name.</P>
  101. <P>You may use the ``mv'' alias for this function in the same way that
  102. you may use the ``cp'' alias for <CODE>copy</CODE>.</P>
  103. <P></P></UL>
  104. <P>File::Copy also provides the <CODE>syscopy</CODE> routine, which copies the
  105. file specified in the first parameter to the file specified in the
  106. second parameter, preserving OS-specific attributes and file
  107. structure.  For Unix systems, this is equivalent to the simple
  108. <CODE>copy</CODE> routine.  For VMS systems, this calls the <A HREF="#item_rmscopy"><CODE>rmscopy</CODE></A>
  109. routine (see below).  For OS/2 systems, this calls the <CODE>syscopy</CODE>
  110. XSUB directly. For Win32 systems, this calls <CODE>Win32::CopyFile</CODE>.</P>
  111. <P>
  112. <H2><A NAME="special behaviour if syscopy is defined (os/2, vms and win32)">Special behaviour if <CODE>syscopy</CODE> is defined (OS/2, VMS and Win32)</A></H2>
  113. <P>If both arguments to <CODE>copy</CODE> are not file handles,
  114. then <CODE>copy</CODE> will perform a ``system copy'' of
  115. the input file to a new output file, in order to preserve file
  116. attributes, indexed file structure, <EM>etc.</EM>  The buffer size
  117. parameter is ignored.  If either argument to <CODE>copy</CODE> is a
  118. handle to an opened file, then data is copied using Perl
  119. operators, and no effort is made to preserve file attributes
  120. or record structure.</P>
  121. <P>The system copy routine may also be called directly under VMS and OS/2
  122. as <CODE>File::Copy::syscopy</CODE> (or under VMS as <CODE>File::Copy::rmscopy</CODE>, which
  123. is the routine that does the actual work for syscopy).</P>
  124. <DL>
  125. <DT><STRONG><A NAME="item_rmscopy"><CODE>rmscopy($from,$to[,$date_flag])</CODE></A></STRONG><BR>
  126. <DD>
  127. The first and second arguments may be strings, typeglobs, typeglob
  128. references, or objects inheriting from IO::Handle;
  129. they are used in all cases to obtain the
  130. <EM>filespec</EM> of the input and output files, respectively.  The
  131. name and type of the input file are used as defaults for the
  132. output file, if necessary.
  133. <P>A new version of the output file is always created, which
  134. inherits the structure and RMS attributes of the input file,
  135. except for owner and protections (and possibly timestamps;
  136. see below).  All data from the input file is copied to the
  137. output file; if either of the first two parameters to <A HREF="#item_rmscopy"><CODE>rmscopy</CODE></A>
  138. is a file handle, its position is unchanged.  (Note that this
  139. means a file handle pointing to the output file will be
  140. associated with an old version of that file after <A HREF="#item_rmscopy"><CODE>rmscopy</CODE></A>
  141. returns, not the newly created version.)</P>
  142. <P>The third parameter is an integer flag, which tells <A HREF="#item_rmscopy"><CODE>rmscopy</CODE></A>
  143. how to handle timestamps.  If it is < 0, none of the input file's
  144. timestamps are propagated to the output file.  If it is > 0, then
  145. it is interpreted as a bitmask: if bit 0 (the LSB) is set, then
  146. timestamps other than the revision date are propagated; if bit 1
  147. is set, the revision date is propagated.  If the third parameter
  148. to <A HREF="#item_rmscopy"><CODE>rmscopy</CODE></A> is 0, then it behaves much like the DCL COPY command:
  149. if the name or type of the output file was explicitly specified,
  150. then no timestamps are propagated, but if they were taken implicitly
  151. from the input filespec, then all timestamps other than the
  152. revision date are propagated.  If this parameter is not supplied,
  153. it defaults to 0.</P>
  154. <P>Like <CODE>copy</CODE>, <A HREF="#item_rmscopy"><CODE>rmscopy</CODE></A> returns 1 on success.  If an error occurs,
  155. it sets <CODE>$!</CODE>, deletes the output file, and returns 0.</P>
  156. <P></P></DL>
  157. <P>
  158. <HR>
  159. <H1><A NAME="return">RETURN</A></H1>
  160. <P>All functions return 1 on success, 0 on failure.
  161. $! will be set if an error was encountered.</P>
  162. <P>
  163. <HR>
  164. <H1><A NAME="author">AUTHOR</A></H1>
  165. <P>File::Copy was written by Aaron Sherman <EM><<A HREF="mailto:ajs@ajs.com">ajs@ajs.com</A>></EM> in 1995,
  166. and updated by Charles Bailey <EM><<A HREF="mailto:bailey@newman.upenn.edu">bailey@newman.upenn.edu</A>></EM> in 1996.</P>
  167. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  168. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  169. <STRONG><P CLASS=block> File::Copy - Copy files or filehandles</P></STRONG>
  170. </TD></TR>
  171. </TABLE>
  172.  
  173. </BODY>
  174.  
  175. </HTML>
  176.