Disk sector read under c#,C++ or vb

  • Thread starter Thread starter PIERRE BECKER
  • Start date Start date
P

PIERRE BECKER

Hi,

Does anyone know which classes I shall use to read physical sectors of a
floppy (A:) , cd or dvd disc ? I need this to try and read disk with
non-dos/pc structure.
Thanks in advance for any help.

Sincerely,
P.B. ([email protected])
 
PIERRE said:
Hi,

Does anyone know which classes I shall use to read physical sectors of a
floppy (A:) , cd or dvd disc ? I need this to try and read disk with
non-dos/pc structure.
Thanks in advance for any help.

Sincerely,
P.B. ([email protected])


There are no special classes, you should call W32 API functions
directly, such as
CreateFile (for floppy, for example, use "\\.\a:", as file name
parameter),
ReadFile/WriteFile, SetFilePointer and DeviceIoControl functions

Example of such application is at http://xedit.smike.ru
 
Back
Top