Howdy,

I am trying to append some text from a very big data file to an other big data file. I am using file_asc_read and file_asc_write for this. The appending goes fine however it eventually stops at line ~13982. I think it reached a limit or such. When I append the text another time it ends at line ~27963 (about twice as long). Anyway to bypass this limit? Here is the code that does the copying:

Code:
var _sizeReadFile = file_length(_handleReadFile); //get size
while (_sizeReadFile > 0) {
		var _byte = file_asc_read (_handleReadFile); //read byte
		file_asc_write (_handleSave, _byte); //save byte
		_sizeReadFile -= 1;
	}


Thanks