home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / fileutil / finddups.arj / FINDDUPS.DOC next >
Encoding:
Text File  |  1991-07-16  |  2.2 KB  |  45 lines

  1. ==============================
  2. Documentation for FINDDUPS.EXE
  3. ==============================
  4.  
  5. The FINDDUPS program allows you to generate a list of all duplicate files
  6. over any number of hard disks. It can cope with very large disks with a
  7. large number of files. The report generated is very simple - each group
  8. of identical files is printed, separated by a blank line from the next.
  9. The first file in each group also shows the file size (of course, all
  10. files in the group are the same size!)
  11. At the end of all the lists, the total number and count of duplicate files
  12. is printed. These totals do NOT include the first file in each group; the
  13. idea is that you will want to keep one copy of the file, so only the
  14. duplicates are "wasting" space.
  15.  
  16. Usage is FINDDUPS drive_list [drive_list]
  17. Where: drive_list is drive_letter[-drive_letter]
  18.        and drive_letter is a valid drive ID.
  19.  
  20. e.g. FINDDUPS A:          looks for dups on drive A: only
  21.      FINDDUPS C-E:        looks for dups on drives C:, D: and E:
  22.      FINDDUPS C: E-F: H:  looks for dups on drives C:, E:, F: and H:
  23.  
  24. NOTES:
  25. ------
  26. * This program (and it's sources) are public domain.
  27. * The program can take a long time to execute, especially on very large hard
  28.   disks. Also, very large duplicate files (especially if there are several
  29.   duplicates) can significantly slow the program, since the entire contents
  30.   of the files need to be compared to check for duplication.
  31. * The program works in two parts; firstly, it creates a list of all files
  32.   on the disks, and then it looks for duplicate files. There will be a lot
  33.   of disk activity during the second phase if there are many duplicates!
  34. * The program may run out of memory if you have a truly enormous number of
  35.   paths and files. An error message will be displayed if this happens.
  36. * The list of duplicates generated may be quite large. It is probably a good
  37.   idea to redirect the output to a file, and then use an editor (or "MORE")
  38.   to look at the results. (eg FINDDUPS C-E: H: > output.doc)
  39. * A quick and dirty way to delete any unwanted files would be to edit the
  40.   redirected-output file and then give it a .BAT extent.
  41. * The C++ source is available on CIX.
  42.  
  43. --- Matthew Watson (maff@cix.compulink.co.uk) 16th July 1991 ---
  44.  
  45.