Closed atty303 closed 5 months ago
@atty303 Does v0.4.1 fix this?
One of the two problems has been solved. I have created a new Issue for the one that has not yet been fixed.
@atty303,
- const cd = new FileEntry(this.data, this.data.slice(ptr));
+ const cd = new FileEntry(this.data, this.data.slice(ptr, sizeof_FileEntry));
In v0.4.0, I made this change to slice the entry at the correct size since the previous behavior would slice from ptr
until the end of the file.
This, for some reason, causes an error to be thrown here.
I'm investigating this issue more.
@atty303 I've found the root cause of the issue, and corrected it: utilium 6cf8815
This has been updated and is now tested.
This causes the following error.
This exception itself stopped appearing after a simple (but wrong) change.
Another exception will be made.
The same exception occurs with
zenfs.promises.exists("/root")
, so it seems to be caused by the absence of "/" in the ZipFS entries.