Dave,
This is how I uncompress the file:
private void Form1_Load(object sender, EventArgs e)
{
this.Decompress(@"C:\downl
}
private void Decompress(string inFileName, string outFileName)
{
using (FileStream inStream = new FileStream(inFileName, FileMode.Open))
using (FileStream outStream = new FileStream(outFileName, FileMode.Create))
BZip2.Decompress(inStream,
}
Here is the output file, but it has some extra stuff in there:
http://www.ee-stuff.com/Ex
Bob
Main Topics
Browse All Topics





by: flavoPosted on 2007-09-11 at 16:07:58ID: 19872839
Files: {zip} pert/Uploa d/getFile. php?fid=46 26
http://www.ee-stuff.com/Ex
The aap file is the one I'm talking about, and the text file is what I believe the file looks like uncompressed.
Dave