What would be the best way to write common code th...
# multiplatform
t
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
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
Random file access means you access the data non-linearly (i.e., you can jump around)
gratitude thank you 1