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

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>parse_dir - parse directory listing</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> parse_dir - parse directory listing</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.     <LI><A HREF="#credits">CREDITS</A></LI>
  26. </UL>
  27. <!-- INDEX END -->
  28.  
  29. <HR>
  30. <P>
  31. <H1><A NAME="name">NAME</A></H1>
  32. <P>parse_dir - parse directory listing</P>
  33. <P>
  34. <HR>
  35. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  36. <UL>
  37. <LI>Linux</LI>
  38. <LI>Solaris</LI>
  39. <LI>Windows</LI>
  40. </UL>
  41. <HR>
  42. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  43. <PRE>
  44.  use File::Listing;
  45.  for (parse_dir(`ls -l`)) {
  46.      ($name, $type, $size, $mtime, $mode) = @$_;
  47.      next if $type ne 'f'; # plain file
  48.      #...
  49.  }</PRE>
  50. <PRE>
  51.  # directory listing can also be read from a file
  52.  open(LISTING, "zcat ls-lR.gz|");
  53.  $dir = parse_dir(\*LISTING, '+0000');</PRE>
  54. <P>
  55. <HR>
  56. <H1><A NAME="description">DESCRIPTION</A></H1>
  57. <P>The <CODE>parse_dir()</CODE> routine can be used to parse directory
  58. listings. Currently it only understand Unix <CODE>'ls -l'</CODE> and <CODE>'ls -lR'</CODE>
  59. format.  It should eventually be able to most things you might get
  60. back from a ftp server file listing (LIST command), i.e. VMS listings,
  61. NT listings, DOS listings,...</P>
  62. <P>The first parameter to <CODE>parse_dir()</CODE> is the directory listing to parse.
  63. It can be a scalar, a reference to an array of directory lines or a
  64. glob representing a filehandle to read the directory listing from.</P>
  65. <P>The second parameter is the time zone to use when parsing time stamps
  66. in the listing. If this value is undefined, then the local time zone is
  67. assumed.</P>
  68. <P>The third parameter is the type of listing to assume.  The values will
  69. be strings like 'unix', 'vms', 'dos'.  Currently only 'unix' is
  70. implemented and this is also the default value.  Ideally, the listing
  71. type should be determined automatically.</P>
  72. <P>The fourth parameter specifies how unparseable lines should be treated.
  73. Values can be 'ignore', 'warn' or a code reference.  Warn means that
  74. the perl <A HREF="../../../lib/Pod/perlfunc.html#item_warn"><CODE>warn()</CODE></A> function will be called.  If a code reference is
  75. passed, then this routine will be called and the return value from it
  76. will be incorporated in the listing.  The default is 'ignore'.</P>
  77. <P>Only the first parameter is mandatory.</P>
  78. <P>The return value from <CODE>parse_dir()</CODE> is a list of directory entries.  In
  79. a scalar context the return value is a reference to the list.  The
  80. directory entries are represented by an array consisting of [
  81. $filename, $filetype, $filesize, $filetime, $filemode ].  The
  82. $filetype value is one of the letters 'f', 'd', 'l' or '?'.  The
  83. $filetime value is the seconds since Jan 1, 1970.  The
  84. $filemode is a bitmask like the mode returned by stat().</P>
  85. <P>
  86. <HR>
  87. <H1><A NAME="credits">CREDITS</A></H1>
  88. <P>Based on lsparse.pl (from Lee McLoughlin's ftp mirror package) and
  89. Net::FTP's parse_dir (Graham Barr).</P>
  90. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  91. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  92. <STRONG><P CLASS=block> parse_dir - parse directory listing</P></STRONG>
  93. </TD></TR>
  94. </TABLE>
  95.  
  96. </BODY>
  97.  
  98. </HTML>
  99.