What would be the best way to write common code that needs random file access?
AFAIK:
• kotlinx-io does not support random access
• Okio does, but not on JS, therefore I have to work around that
s
Scott Lanoue
03/03/2025, 7:38 PM
I’m not sure what you mean by random file access, but you could write your own native wrappers to interact with IO as you see fit
j
jw
03/03/2025, 11:33 PM
Random file access means you access the data non-linearly (i.e., you can jump around)