******** A description of the files in this SlctComp archive. **********

I initially wrote these to be able to compare the files in a drawer on
my hard disk with the same files I'd backed up on to another disk.

SlctDiff.dopus5:
   Selects files in the source lister with DIFFERENT names
   to those of the files in the destination lister.

   String for Dopus Function Editor:
   ARexx       DOpus5:ARexx/SlctDiff.dopus5 {Qp}


SlctSame.dopus5:
   Selects files in the source lister with the SAME names
   as the files in the destination lister.

   String for Dopus Function Editor:
   ARexx       DOpus5:ARexx/SlctSame.dopus5 {Qp}


SlctDS.dopus5:
   Selects files with the same names in the source lister
   as those in the destination lister according to the
   variable options given with the Dopus args '{Qa}'.

   The options can be..

   files with same, different, later or earlier DATE
   Or
   files with same, different, larger or smaller SIZE.

   Example string for Dopus Function Editor:
   ARexx       DOpus5:ARexx/SlctDS.dopus5 {Qp} {Qa}"DATE" {Qa}"D"

   The first {Qa} can be either "DATE" or "SIZE"

   The second {Qa} can be either "S" for SAME, "D" for DIFFERENT, "-" for
   LARGER or LATER, "+" for SMALLER or EARLIER.

   Another example..

   ARexx       'yourpath/'SlctDS.dopus5 {Qp} {Qa}"DATE" {Qa}"+"

   with the above line.. if a file with the same name is found in the SOURCE
   lister and it's date is later then the one in the DESTINATION lister the
   file in the SOURCE lister will be selected.
   The date info for a file is the number of seconds since  1/1/78.

   Just add the same "option" character to the functions' label so that you
   know which button you are clicking on. eg. 'SlctDATE+' for higher date,
   'SlctSizeD' for selecting files with the same names but (D)ifferent sizes.
   I've put opposites on the same buttons ie. 'SlctSizeS' behind
   (ie. right mouse clickable) 'SlctSizeD' etc.

   DOPUS HINT:
   To open a button bank from another button..
   Command     LoadButtons WORK:Opus5/Buttons/fileselect

   To close a button bank from another button..
   Command     CloseButtons NAME "fileselect"

SelectFileByComment.dopus5:
Selects files in a source lister by the files' comment from
a string entered in a requester. The search is case insensitive.
If the entered string is found in any files' comment the file is selected.

