How can I read only a certain number of bytes from a file in Ionic?
I am using the Native File plugin but it doesn't seem to handle that. I tried all the file reading methods :
- readAsText(path, file)
- readAsDataURL(path, file)
- readAsBinaryString(path, file)
- readAsArrayBuffer(path, file)
They all work fine, but I don't want to have to read the whole file and then extract the part I need, that would defeat the purpose.