home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / d / doslib1.zip / DOSLIB.TXT < prev    next >
Text File  |  1992-11-01  |  2KB  |  80 lines

  1. -------------------------------------------------------------------------------
  2.  
  3. DOSLIB.EXE - AutoCAD ADS DOS Library
  4. November 1, 1992
  5.  
  6. Copyright (C) 1992, Robert McNeel & Associates
  7. 3670 Woodland Park Avenue North
  8. Seattle, WA  98103
  9. (206) 545-7000
  10. FAX (206) 545-7321
  11.  
  12. -------------------------------------------------------------------------------
  13.  
  14. Permission to use, copy, modify, and distribute this software for any purpose
  15. and without fee is hereby granted, provided that the above copyright notice
  16. appears in all copies and that both that copyright notice and this permission
  17. notice appear in all supporting documentation.
  18.  
  19. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED 
  20. WARRANTY.  ALL IMPLIED WARRANTIES OF FITNESS FOR ANY PARTICULAR 
  21. PURPOSE AND OF MERCHANTABILITY ARE HEREBY DISCLAIMED.
  22.  
  23. -------------------------------------------------------------------------------
  24.  
  25. SYNOPSIS OF DOSLIB FUNCTIONS
  26.  
  27. Drive Handling:
  28.     (dos_drive [drive])
  29.         Gets and sets the current drive
  30.     (dos_drives)
  31.         Gets all available drives
  32.     (dos_diskfree [drive])
  33.         Gets free disk space
  34.  
  35. Path Handling:
  36.     (dos_fullpath path)
  37.         Makes a full path name from a relative path name
  38.     (dos_makepath drive dir filename ext)
  39.         Makes a path name from components
  40.     (dos_splitpath path)
  41.         Splits a path name into components
  42.  
  43. Directory Handling:
  44.     (dos_chdir [path])
  45.         Changes the working directory
  46.     (dos_mkdir [path])
  47.         Makes a directory
  48.     (dos_rmdir [path])
  49.         Removes a directory
  50.     (dos_pwdir [drive])
  51.         Gets path to working directory
  52.     (dos_subdir [path])
  53.         Gets subdirectories in the working directory
  54.  
  55. File Handling:
  56.     (dos_copy source destination [T])
  57.         Copies a file (T=overwrite)
  58.     (dos_delete filename)
  59.         Deletes a file
  60.     (dos_rename filename1 filename2)
  61.         Renames a file or directory
  62.     (dos_dir [filespec])
  63.         Gets directory listing of files
  64.     (dos_file filename)
  65.         Gets detailed file information
  66.     (dos_find filename [drive])
  67.         Finds a file
  68.     (dos_search filename environment)
  69.         Searches for a file using an environment path
  70.  
  71. Miscellaneous:
  72.     (dos_about)
  73.         Gets DOSLIB version number
  74.     (dos_date [date])
  75.         Gets and sets system date
  76.     (dos_time [time])
  77.         Gets and sets system time
  78.     (dos_ver)
  79.         Gets DOS version
  80.