views:

298

answers:

1

I'm making a cross-platform (Windows and OS X) with wxPython that will be compiled to exe later.

Is it possible for me to create ISO files for CDs or DVDs in Python to burn a data disc with?

Thanks, Chris

+1  A: 

Following 'do not reinvent the wheel' I would try using mkisofs (part of cdrtools) (although originating on Linux, I think there are windows builds floating around the net).

ChristopheD
If you really want to make it look like Python, use `subprocess.Popen('mkisofs'...)`
S.Lott