Olof Lagerkvist

Results 135 comments of Olof Lagerkvist

> Hi @LTRData , do you know except using this project DiscUtils, do we have any other way/lib to parse a VHDX/.avhdx image to get the extent information? There is...

It sounds like the mirror sample lacks proper synchronization when reading/writing using one single file handle from multiple threads. I could take a look at this.

This has been implemented in my fork of this project: https://github.com/LTRData/DiscUtils/commit/608c43d1c44e819c6e500864e2483ecb0f3f630c Note that the fork has some breaking interface and base class changes compared to this repo, so it might...

Another solution would be to create the underlying file as sparse file. That way it will only have portions of it that are actually in use allocated on disk. This...

I just tried with an old 1.8 MB XDF image from old OS/2 installation media and that seems to work correctly. But your images are probably different, maybe not only...

Yes, something strange happens when a large file is added to that image. ``` $ fsck_msdosfs disk.xdf ** disk.xdf ** Phase 1 - Read FAT and checking connectivity ** Phase...

I have found a solution over at my fork of this repo: https://github.com/LTRData/DiscUtils I will have new nuget packages with this fix included within a few days!

You can set options in `NtfsOptions` on your `NtfsFileSystem` object to include hidden, system and/or meta files in your directory listings.

A couple of things to check. Synchronization. Create a `sync` block around the read call to avoid situations with multiple reads reading from the same stream with collisions with setting...

Could you try with `DokanNetMirror` sample application and create a Dokan mirror drive for a directory with PDF files and see whether it works with Adobe Reader to open a...