Is there a way to read huge csv-data-files in reverse orders without loading them at once into the memory - too big?
I have huge ASCII csv-data files with the oldest time stamp at the beginning but mainly I need the newest data at the end of the file. Is there an elegant way to read such files and split them into lines from their end without reading the whole content at once as the files size might be too big?
Thanks in advance!