Is there an alternative to writing my own Cordova cat plugin to concatenate files in Cordova?
My other (until now unsuccessful) approach can be seen here: Merging multiple parts of a file in Cordova
Is there an alternative to writing my own Cordova cat plugin to concatenate files in Cordova?
My other (until now unsuccessful) approach can be seen here: Merging multiple parts of a file in Cordova
Yes there is a way, see my other question + answer here.
In short you have to use the File API of cordova and the File API of HTML5 to read the fileparts and then put them together again with the FileWriter of Cordova. Be sure to use readAsArrayBuffer instead of readAsBinaryString!