home *** CD-ROM | disk | FTP | other *** search
/ Borland Programmer's Resource / Borland_Programmers_Resource_CD_1995.iso / ntcode / ntls / ls.txt < prev   
Encoding:
Text File  |  1995-05-19  |  2.1 KB  |  51 lines

  1. LS is an NT console application for performing file and directory
  2. listings (similar to Unix utitlities of the same name). This is 
  3. version 1.7 and should replace the file "ntls.zip" in the nt directory.
  4.  
  5. Changes since 1.0
  6.  
  7. - Fixes incorrect listing of a single directory containing only
  8.   a single subdirectory.
  9. - Accounts for daylight-savings time in time-date fields.
  10. - Fixes for release version of NT
  11.  
  12. --jon [Jon S. Whalen]
  13.  
  14. For problems send e-mail to: jon@hook.corp.mot.com
  15. ---------------------------------------------------------------------------
  16. LS: Version 1.7
  17. Usage: ls [-1?aclrstuxzCFL] [path|file|pattern]
  18.  
  19. Options:
  20.    ?|h: display this usage message
  21.    1:   format as single column, left adjusted
  22.    a:   show all files (including .* and hidden files)
  23.    c:   sort by creation time - most recently created first
  24.    C: + list files in order down columns
  25.    F:   add suffixes to the file names:
  26.         '\' = directory
  27.         '!' = hidden file (only when -a is specified)
  28.         '&' = system file
  29.    l:   use long listing format
  30.    L:   use longer listing format
  31.    r:   reverse the sense of the sort
  32.    s:   sort by size - decreasing
  33.    t:   sort by modification time - most recently modified first
  34.    u:   sort by last access time - most recently accessed first
  35.    x:   list files in order across columns, rather than down columns
  36.    z: + sort by filename in lexical order (i.e. alphabetical order)
  37.  
  38.    Options marked with a '+' are the defaults
  39.  
  40. Notes:
  41.  
  42.    1. For compatibility with Unix ls, file and directory names beginning
  43.       with '.' are not displayed unless the -a option is specified.
  44.    2. File systems which are case-insensitive (e.g. FAT) are displayed
  45.       in lower case. Case-sensitive file systems (e.g. NTFS) are displayed
  46.       in mixed upper and lower case. It is Unicode compatible.
  47.    3. This program is freely distributable and is provided "AS-IS", WITHOUT
  48.       WARRANTY of any kind, either express or implied. No guarantee is made
  49.       of suitablility for any purpose, whatsoever.
  50.  
  51. Copyright (c) Jon S. Whalen 1993. All rights reserved.