home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-perl-addon-1.4.9-installer.exe / demo_hashdir.pl < prev    next >
Encoding:
Text File  |  2004-06-01  |  195 b   |  10 lines

  1. use Attribute::Handlers autotie => { Dir => 'Tie::Dir qw(DIR_UNLINK)' };
  2.  
  3. my %dot : Dir('.', DIR_UNLINK);
  4.  
  5. print join "\n", keys %dot;
  6.  
  7. delete $dot{killme};
  8.  
  9. print join "\n", keys %dot;
  10.