https://kotlinlang.org logo
#javascript
Title
# javascript
s

Sean Proctor

01/16/2023, 10:44 AM
Can anyone recommend a library for reading/writing files from the browser? I'm trying to target javascript from a multiplatform app and I just discovered that Okio (which I'm currently using) doesn't support filesystem access in the browser.
c

CLOVIS

01/16/2023, 1:17 PM
AFAIK you can't write files in the browser. You can't open or list files either, the user has to provide you with a file handle that you can read.
j

jw

01/16/2023, 2:33 PM
c

CLOVIS

01/16/2023, 2:35 PM
Interesting. Well, that's a good idea for a multiplatform library, then
4 Views