topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday April 18, 2024, 7:37 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: ISO Programming - Edit/Merge  (Read 4080 times)

gregheaton

  • Participant
  • Joined in 2006
  • *
  • Posts: 6
    • View Profile
    • Donate to Member
ISO Programming - Edit/Merge
« on: December 13, 2006, 07:44 PM »
Hi, I have a little task that I want to automate for some people at work and instead of getting one of you competent coders to do it, I'd like to attempt it myself. However, I cannot find any information on it.

Essentially, what I want to do is merge two ISO files into one ISO file. My preference is to use VB, but I can also work with C#

If you can point me in the right direction to get started, it would be a great help.

Thanks in advance...

f0dder

  • Charter Honorary Member
  • Joined in 2005
  • ***
  • Posts: 9,153
  • [Well, THAT escalated quickly!]
    • View Profile
    • f0dder's place
    • Read more about this member.
    • Donate to Member
Re: ISO Programming - Edit/Merge
« Reply #1 on: December 14, 2006, 09:40 AM »
This is probably a bigger task than you're imagining...

there's multiple filesystem formats being used in isos: ISO9660/joliet, rock ridge, UFS, and probably more if you're into 'exotic' ISOs. And there's various extentions and rule-relaxations as well.

Your best bet is probably finding a tool to extract ISOs, extract both files, then use mkisofs (or that Microsoft tool that allows only storing data for identical files once), and re-build the ISO.

It's a bit hacky, but at least you can automate the process...
- carpe noctem

Renegade

  • Charter Member
  • Joined in 2005
  • ***
  • Posts: 13,288
  • Tell me something you don't know...
    • View Profile
    • Renegade Minds
    • Donate to Member
Re: ISO Programming - Edit/Merge
« Reply #2 on: December 14, 2006, 03:58 PM »
I think you're bang on the money f0dder. i.e. Extract the files & create a new ISO.
Slow Down Music - Where I commit thought crimes...

Freedom is the right to be wrong, not the right to do wrong. - John Diefenbaker

gregheaton

  • Participant
  • Joined in 2006
  • *
  • Posts: 6
    • View Profile
    • Donate to Member
Re: ISO Programming - Edit/Merge
« Reply #3 on: December 14, 2006, 08:04 PM »
hmmm, not the response i was after. but, thanks for the replies anyway.