Help for this page

Select Code to Download


  1. or download this
    use File::Find;
    
    ...
    find( &wanted, '.' );
    
    # @dir_list now contains the list of directories found.
    
  2. or download this
    use File::Find;
    
    ...
    
    find( &process_each_file, '.' );
    # All files have now been read & relevant stuff is in the database.