Would it be possible on any platform to merge two files into a single file so that when opened, both files would launch? For example, take a video called cat.avi, and a picture called hello.jpg, and merge them into a file called both.something. When both.something is opened, a video player launches and plays cat.avi and a picture viewer opens displaying hello.jpg.

link|improve this question

71% accept rate
What Operative System are you using? – nmat Aug 15 '11 at 23:53
os doesn't matter. As said above, any platform. – a sandwhich Aug 16 '11 at 0:40
feedback

2 Answers

up vote 2 down vote accepted

Yes, it would be possible to design a file format to wrap documents into a single file and it would be possible to design an application that would read the file and launch the documents within it in their relevant applications. There are no commonly accepted file formats to do this so any custom solution would limit the portability and usefulness of the original documents. There are other more standard and flexible ways (such as scripting) that can launch multiple documents.

link|improve this answer
feedback

You could use a batch file, but then you'd have to distribute three files.

@Echo Off
CD /D %~dp0
Start cat.avi
Start hello.jpg
link|improve this answer
1  
If use a self extracting zip/7-zip that runs a file after extraction and that file is the above mentioned batch file. Then it could all be one file – Kevin Aug 15 '11 at 23:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.