home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / UTILITY / FILE / FIND.ZIP / FINDFILE.DOC < prev    next >
Encoding:
Text File  |  1990-08-21  |  2.0 KB  |  43 lines

  1. Usage: c:\src\findfile.exe [[directory] [-option ...] [-p] ...]
  2.     File finding utility. Copyright (c) 1990 Stephen J Doyle.
  3.                                              (steved@inmos.co.uk)
  4. Options:
  5.     -n (-name)       - Wildcard file specification to find
  6.     -x (-xd)         - Comma separated list of subdirectories not searched
  7.     -s (-sort)       - Sort by file extension before name
  8.     -r (-rev)        - Reverse order of sort
  9.     -t (-type) ftype - Also search for files with 'ftype' attributes
  10.         [ftype can contain h(idden), s(ystem), d(irectory) or * (all)]
  11.     -d (-date) datex - Search for files matching date/time expression
  12.     -min size[km]    - Search for files >= size[km] bytes
  13.     -max size[km]    - Search for files <= size[km] bytes
  14.     -p (-print)      - Print all files matching search criteria
  15.     -ls              - Display file attributes and size (in K bytes)
  16.     -LS listoptions  - Display file details given by listoptions
  17.         [listoptions can contain d(ate), t(ime), s(ize in bytes),
  18.          k (size in Kbytes), m (size in Mbytes) or a(ttributes)]
  19.     -? (-help)       - Display (this) help text
  20.     options can be switched off using a trailing - e.g. -sort-
  21.  
  22.     Options can be used multiple times overriding previous settings.
  23.     Multiple use of -print causes multiple file finding operations.
  24.  
  25. A file specification (using -name) or directory specification (using -xd)
  26. may contain * or ? wildcard characters in any position.
  27.  
  28. A date expression (datex) is a string of the form [comp]datetime
  29.     comp specifies a comparison operation on the file date/time
  30.     comp is one of: !=, ne,        not equal
  31.                     ge,            greater or equal(default)
  32.                     le,            less than or equal
  33.                     gt, g,         greater than
  34.                     lt, l,         less than
  35.                     ==, eq, =, e.  equal
  36.  
  37.     datetime is of the form 21-08-1990-23:44:16
  38.  
  39.     If no value is given between field seperators the value
  40.     defaults to the equivalent current date/time value.
  41.     '*' for a field matches any value.
  42.  
  43.