Burn files to CD using c#

前端 未结 4 856
暗喜
暗喜 2021-01-18 17:49

I am writing a program that downloads images to the hard drive and then I want to burn the folders that those are all divided up into, on a cd. I don\'t want to create and

4条回答
  •  清酒与你
    2021-01-18 18:06

    As of Windows Vista you can use the IMAPI API. This API enables you to burn images to CD, DVD and Blu-ray.

    More information about the Image Master API can of course be found on MSDN:

    http://msdn.microsoft.com/en-us/library/aa366450(v=VS.85).aspx

    Check out this CodeProject article which talks in detail about it:

    Another third party library that can help is SharpRecorder. The code is hosted on Google. Take a look at is to see if it fits your requirements. If not, you can always access the code and see how it works and learn from it.

提交回复
热议问题