Hello,
In Ktor, I can only access the response body once the request is fully completed. I want to implement a download manager to handle cases where downloads take too long. My goal is to create a temporary file to save the response body incrementally as bytes. This way, if the user closes the app mid-download, I can resume downloading the remaining data later. I'm unsure if this is feasible—any guidance would be appreciated!