Quantcast
Channel: sharpcompress Discussions Rss Feed
Viewing all articles
Browse latest Browse all 239

New Post: System.NotImplemented exception with RAR files on stream copy (Windows Store App)

$
0
0
Hi, thank you for your reply.
I actually tried to compile the source code but failed due to certificate issues, so I took a different approach.
Actually, I came up with a simple solution that works asynchronously as I wanted.
InMemoryRandomAccessStream ras = new InMemoryRandomAccessStream();
using (Stream writeBufferStream = ras.AsStreamForWrite())
{
    await Task.Run(() =>
    {
        entry.WriteTo(writeBufferStream);
        writeBufferStream.Flush();
    }
);
If I manage to compile your Library, I'll see what I can do about the exception.

And once again, thanks for your great library, I works just fine (except for 7zip random access, which is really really slow for me, making it unusable)

Viewing all articles
Browse latest Browse all 239

Latest Images

Trending Articles



Latest Images