I need read i file in reverse order, because now it must run all file to find something that I know it`ll be in the last lines. My objective is to make my application Faster Which is the FASTEST way to read a file line by line in reverse order?
For example: My file is
  line1
  line2
  line3
  line4
  line5
I want to read
  line5
  line4
  line3
  line2
  line1
I know there`s a lot of ways to do it... but which one will give me less overhead?
 
                        
Try this out, I think this is the fastest way to read a file in reverse order.