cd info in c#

  • Thread starter Thread starter adrin
  • Start date Start date
A

adrin

hi i want my c# program to do the following:
1)read cdr serial number(does every cd have its unique serial/id number?)
2)read cdr capacity
3)read cdr producer/writing strategy/dye (this is enclosed in ATIP i guess)
4)free space

how can i implement it? i started writing winaspi wrapper but maybe there's
another/better way?
 
Unless someone knows of a component or a wmi query to do what you want, you
will either have to use winaspi or dive a bit lower and use SPTI(Scsi
PassThrough Interface) and native MMC commands(should always work, without a
winaspi requirement). Winaspi is probably a bit easier, I have done a bit of
work with SPTI and it isn't horribly difficult(however, its easier to work
in C++).
 
Back
Top