home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winbase / io / floppy / readme.txt < prev   
Text File  |  1996-01-17  |  861b  |  36 lines

  1. Accessing a Floppy Disk 
  2.  
  3.  
  4. SUMMARY
  5. ========
  6.  
  7. The FLOPPY sample is designed to show how to access a physical floppy disk
  8. under Windows NT.
  9.  
  10. This program has two major features:
  11.  
  12.   - It can be used to display the geometry of a disk. For example, use the 
  13.     command:
  14.  
  15.         mfmt -g a:
  16.  
  17.   - It can be used to produce a disk image, or to write a disk image to a 
  18.     floppy. For example, use the commands:
  19.  
  20.         mfmt -c a: bootdisk         - produce a disk image of a:
  21.         mfmt -c bootdisk a:         - make a: identical to bootdisk image
  22.  
  23. MORE INFORMATION
  24. =================
  25.  
  26. This program is very simple. Minimal error checking is done. It is meant to 
  27. provide an example of how to:
  28.  
  29.   - Open a physical disk.
  30.  
  31.   - Read a disk's geometry.
  32.  
  33.   - Perform a low-level format operation.
  34.  
  35.   - Read and write physical sectors.
  36.