home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR24 / SHLONG10.ZIP / SHOWLONG.TXT < prev   
Text File  |  1993-09-29  |  2KB  |  67 lines

  1. ShowLong v1.0 - Expose Long/HPFS filenames
  2. ==========================================
  3. Initial version by Paul Gallagher 1993.
  4. This REXX script is hereby placed in the public domain. As a courtesy,
  5. any changes should be adequately documented, and authorship notices of
  6. prior versions retained.
  7.  
  8. Contents of this file:
  9.   * Version History
  10.   * Contacting the author
  11.   * System Requirements
  12.   * About DirSize
  13.   * Using DirSize
  14.  
  15. Version History
  16. ===============
  17.  
  18. 93.09.28 : v1.0
  19.  
  20. Contacting the Author
  21. =====================
  22. Paul Gallagher:
  23. Contact me by mail at <paulg@a1.resmel.bhp.com.au>, snail mail at:
  24. PO Box 731 Mt Waverley 3149 Australia, or tel: +61-3-560-7066 (BH).
  25. If you make any useful mods to this script, please send me a copy!
  26.  
  27. System Requirements
  28. ===================
  29. DirSize requires REXX to be properly installed on your system. It also
  30. requires RXQUEUE.EXE which should be found in C:\OS2. It has been developed
  31. under IBM OS/2 v2.x - I'm not sure how it will go under previous versions.
  32.  
  33. About ShowLong
  34. ==============
  35. ShowLong is used to expose all of the files/directories in a specified direcory
  36. tree that have names that don't conform to the DOS FAT 8.3 standard.
  37. It simply lists all offending files with full path info - its up to you
  38. to decide what you do with the information!
  39.  
  40. The utility was initially developed to provide a quick "DOS compatibility"
  41. check for files being moved between environments, but has other uses such
  42. as when preparing to migrate an HPFS partition to FAT.
  43.  
  44. Using ShowLong
  45. ==============
  46. Getting help:     SHOWLONG /?
  47.  
  48. Usage:
  49.        SHOWLONG [RootDir]
  50.  
  51. Output is a list of all files/directories with non-DOS FAT 8.3 names.
  52.  
  53. Where:
  54.  
  55.   [RootDir]
  56.  
  57. is the "root" directory from where to start the scan of files. The
  58. default is the current directory. Note that scans will search all
  59. sub-directories.
  60. Eg: to scan all of D: drive:
  61.  
  62.   SHOWLONG D:\
  63.  
  64. NB: It is possible to use file masks if appropriate:
  65.  
  66.   SHOWLONG D:\*.doc
  67.