home *** CD-ROM | disk | FTP | other *** search
/ Shareware 1 2 the Maxx / sw_1.zip / sw_1 / DISK_UTL / DFS1_0.ZIP / README.DFS < prev   
Text File  |  1992-05-12  |  5KB  |  117 lines

  1. Release Notes on DFS.EXE
  2. ------------------------
  3.  
  4. - Current Version : V1.0
  5.                   (The version number can be found on the
  6.                    credits panel when you leave the program)
  7.  
  8. - Author : Denis PHILIPS
  9.            Holleweg 5
  10.            9320 Erembodegem-Aalst
  11.            BELGIUM
  12.  
  13. - Date Released : May 12th, 1992
  14.  
  15.   * Credits & Public Domain (Try not to skip this section)
  16.     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  17.        First I want to say 'THANKS !' to all those people who have
  18.     been so kind to release programs as public domain or as
  19.     shareware.  Their sources and ideas have inspired me in this
  20.     program, and I dare say that some of them contain more valuable
  21.     information than commercial programs.
  22.  
  23.        Nobody likes to pay for things, that for sure, but everybody
  24.     wants to feel that what they've done is appriciated.  That's
  25.     why I don't want any money for this program;  I enjoyed writing
  26.     it and I would even enjoy more if I knew the program is being used.
  27.  
  28.        So I'd like to ask you to send me an ANSICHT-card (a post card)
  29.     of the area where you live.  It will stimulate me and the people
  30.     I know in writing more programs and in sharing our knowledge with
  31.     fellow programmers. (My address is mentioned above this section)
  32.     Thanks again !
  33.  
  34.  
  35.   * Purpose of the program DFS.EXE
  36.     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  37.        The name DFS stands for Duplicate File Searcher.
  38.     Have you ever had the idea that your hard disk's space
  39.     is used to much by different versions of the same file,
  40.     or even worse, by identical versions of the same file ?
  41.        Well, this program can help you in sorting out
  42.     the ones you don't need anymore.  All this program does
  43.     is scanning the drives you select for files with the same
  44.     name.  You will be able to scroll through the list of
  45.     duplicates and to select files for deletion.
  46.     See the Help-panel for controls.
  47.  
  48.        This program can be used by people running out of
  49.     hard disk space who want to delete all those HIMEM.SYS drivers
  50.     that come with DOS, but also with a lot of other MicroSoft
  51.     packages.  And don't forget all the UNZIP.EXE files installed
  52.     by almost all Borland packages.
  53.        You will not only gain hard disk space; the risk of launching
  54.     older versions of executables will disappear if you only have
  55.     the most recent version on your disk.
  56.        Programmers will easily find out where the most recent
  57.     source codes of their programs reside, and will be able to delete
  58.     the sources they don't need anymore.
  59.  
  60.   * Technical Notes
  61.     ~~~~~~~~~~~~~~~
  62.        The program was completely written using an official (really!)
  63.     version of Turbo Pascal 6.0 and an official (really!!) version
  64.     of MicroSoft DOS 5.0.
  65.  
  66.        The program reads all files from the selected drives into a
  67.     binary tree (When a selected drive is not ready it is simply
  68.     skipped).  The binary tree's search key is the filename so it's
  69.     very easy to locate all the duplicates and to transfer them
  70.     to a linked list to scroll through.
  71.        The problem in building the binary tree can be that there is
  72.     not enough available memory to store all the directory entries.
  73.     In that case a warning is displayed that only the directory
  74.     entries read uptil then will be scanned for duplicates.  Future
  75.     releases of the program may use temporary files or extended/
  76.     expanded memory.
  77.  
  78.        Note that in the program the space occupied by a flagged
  79.     duplicate is rounded to the number of bytes occupied by the
  80.     clusters for that file on that specific drive.
  81.     E.g. : A file of 1653 bytes could be rounded to 2048 bytes 
  82.     (= 2 clusters on most hard disks) or a file of 720 bytes could
  83.     be rounded to 1024 bytes (= 2 clusters on most RAM drives).
  84.        This is useful especially for the space occupied by the
  85.     selected files, because after all, I think most people will
  86.     use the program to regain space on their hard disks.
  87.     And what's more important than knowing exactly how much bytes
  88.     will be freed up ?
  89.  
  90.   * Future Releases
  91.     ~~~~~~~~~~~~~~~
  92.     I intend to add some features to the program such as
  93.  
  94.         - a more standard user interface (Turbo Vision);
  95.         - the use of temporary files or extended/expanded memory;
  96.         - ability to configure colors (this version was written 
  97.           for use with color displays)
  98.         - ability to search files with equal - Filenames
  99.                                              - Filesizes
  100.                                              - Filedates
  101.                                              - Filetimes
  102.                                              - Filedates & filetimes
  103.                                              - ...
  104.     
  105.        These things will systematically be added in future releases of
  106.     the program.  You'll find these updates were you found this copy. 
  107.     Source codes of earlier versions will also be released.
  108.  
  109.  
  110. - Please remember the Ansicht-card.
  111.  
  112.  
  113. - Happy Computing (Don't forget your wives and don't spoil your
  114.                  health by staying up too late) !
  115.  
  116.  
  117.                                                        - Denis -