Olof Lagerkvist
Olof Lagerkvist
Signing strong named assemblies is mostly deprecated now so this typically does not matter. That is, unless you need to use the library in .NET Framework applications where you need...
I see. I think the easiest solution to such scenarios is to build another version without the signing. Since the signing is needed in some other cases. Or maybe the...
This library only supports reading ext file systems, not modifying. However, since you can get information about where a file is stored, you could update this location directly in the...
I think I found why this happens and made a fix that seems to help, at least for simple tests like this. I am a bit unsure though and it...
> Wow, nice. I will take a look and see if it works. Thanks for your time, @LTRData ! If you want to use it as NuGet packages, my packages...
Thanks for the suggestion! I have enabled issues and discussions there now!
You mean the `ISOCreate` command line tool? I agree that would be useful. I will consider it next time I do something with the command line tools.
If you create a pull request in my fork at https://github.com/LTRData/DiscUtils I can take a look and merge it when it looks okay! Also, my fork has a lot of...
This is expected, or? `cd.Root.GetFiles("")` should return 0 results because a file name pattern can never be empty. Use `cd.Root.GetFiles("*")` when you want to return all entries.
Okay, I understand now and yes, you are right. It comes down to a partially broken implementation with regular expressions to filter searches. It is not only broken, but the...