home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / perl / dirtree.pl < prev    next >
Encoding:
Text File  |  2003-07-19  |  172 b   |  8 lines

  1. # DirTree, diplay directory tree.
  2.  
  3. use Tk;
  4. use Tk::DirTree;
  5. my $top = MainWindow->new;
  6. my $dl  = $top->Scrolled('DirTree')->pack(-expand => 1 , -fill => 'both');
  7. MainLoop;
  8.