How Do I Use Zip Support In Emulators


atomicthumbs

I am the king of the collectors, with hospital bed
Joined
Apr 17, 2006
Messages
2,827
Age
32
Location
XK-Masada
Website
printeronfire.org
Do I put the ROMs all together in one file, and can the emulators (or he libraries they use) suppot maxiumum compression? Help would be much appreciated, as I'm going on a trip tommorow and would like to fit some MP3s on my puny lile 128mb SD card. :angry:
 
I think it supports max(pretty posative), and they do not go into one file.
 
i_am_a_noob posted on Sep 2 2006 at 08:15 PM said:
I think it supports max(pretty posative), and they do not go into one file.

All of the emulators support max?
 
Last edited by a moderator:
Fishbong posted on Sep 3 2006 at 02:42 AM said:
Every ROM needs its own zip file. And you can use any compresion level you want, as long as its zip.


Anyone have a recommendations for mass zipping them?
 
Last edited by a moderator:
o0o0o posted on Sep 3 2006 at 01:37 PM said:
Fishbong posted on Sep 3 2006 at 02:42 AM said:
Every ROM needs its own zip file. And you can use any compresion level you want, as long as its zip.


Anyone have a recommendations for mass zipping them?

http://7-zip.com with scripts
 
Last edited by a moderator:
Shikaku posted on Sep 3 2006 at 11:18 AM said:
o0o0o posted on Sep 3 2006 at 01:37 PM said:
Fishbong posted on Sep 3 2006 at 02:42 AM said:
Every ROM needs its own zip file. And you can use any compresion level you want, as long as its zip.


Anyone have a recommendations for mass zipping them?

http://7-zip.com with scripts

Eh, I'll just use perl then.
 
Last edited by a moderator:
Squidge posted on Sep 4 2006 at 02:44 PM said:
Windows Commander -> Pack Files -> Zip -> Create Seperate Archive, One Per File

:)


Thanks, that's the type of reply I was hoping for. Something nice and pretty. However I did end up just making a quick 1 minute perl script for the purpose.

Code:
#!/usr/bin/perl

my @files = <*>; # All Files in Current Directory
foreach my $file (@files) {
  if ($file !~/\.zip$/) {
	print "\n$file";
	system("gzip -9 -S \.zip $file");
  }
}
print "\nDone.\n\n";
 
Last edited by a moderator:
Back
Top