Burn files to CD using c#

前端 未结 4 858
暗喜
暗喜 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:13

    There is no way to do this without calling API calls in to windows. It appears to be done with COM calls(ICDBurn for XP, MAPI for Windows Vista or newer). Here is a SO Question that can point you in the right direction in how to do it in C++.

    If you need assistance doing COM calls in C# feel free to open a new question on the issue you are having with that.

提交回复
热议问题