home *** CD-ROM | disk | FTP | other *** search
/ Shareware GOLD / SGOLD1.bin / cdrom.txt next >
Text File  |  1994-10-24  |  2KB  |  52 lines

  1. INFORMATION ABOUT CD-ROM'S
  2. ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  3.  
  4. Information
  5. ===========
  6.  
  7. CD-ROM = Compact Disc - Read Only Memory
  8.  
  9. The files on a CD-ROM are in 'READ-ONLY'-attribute.
  10. This is because you cannot write on a CD-ROM.
  11.  
  12.  
  13. Copying
  14. =======
  15.  
  16. If you want to copy files from your CD-ROM to your harddisk, the
  17. file-attributes of these files will also be copied to your
  18. harddisk.
  19.  
  20. It all depends with wich copy-program you copy your files.
  21. Some copy-programs don't copy the 'READ-ONLY'-attribute to your
  22. harddisk. (e.g.: 'COPY' ==> DOS, 4-DOS, N-DOS,...)
  23.  
  24. Norton Commander for example, copies the 'READ-ONLY'-attribute to
  25. your harddisk.  So all these files will be in 'READ-ONLY'-attribute
  26. on your harddisk.  This can cause many problems with some programs,
  27. like files who cannot be read, updated or written to disk.
  28.  
  29. If you like for example Norton Commander, and you want to copy files
  30. from within N.C., you should use the command 'ATTRIB' after the
  31. copy-process.
  32.  
  33.  
  34. The external-command 'ATTRIB' from DOS.
  35. =======================================
  36.  
  37. With this command it's possible to change the attributes of 1 file or
  38. more, even whole directories with all its sub-dirs and files is possible.
  39.  
  40. For example you have a directory on your harddisk 'C:\TEST' and all the
  41. files and sub-dirs beneath this directory are in 'READ-ONLY'-attribute.
  42. You can clear these attributes of all these files by typing at the prompt:
  43.  
  44.   ATTRIB -R C:\TEST /S
  45.  
  46. Now this program 'TEST' will function properly.
  47. The command 'ATTRIB' must reside in your DOS-path (mostly C:\DOS).
  48. In your autoexec.bat file should be a line like :
  49.  
  50.   SET PATH=C:\DOS; ...etc.
  51.  
  52.