Splitting a large file into smaller ones or chunking upload

I’m working on an app that will create relatively large audio files and put them on the local filesystem. I’d like to then be able to either split the file into multiple smaller files or chunk the upload so that I’m not having to load the entire file into memory at once in order to send it. Looking at FileSystem, it doesn’t appear to have the functionality to either read a file as a stream or to split a file into parts. Am I missing something? Is there a way to make this work?

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.