Is there a way (without using external libraries) to read the contents of a file from and only from, let's say, index 123 to index 5432. The purpose for using this is for storing large amounts of information in files, but not wanting to make too many files and to not load it all into Ram. Is there any way to do this?
An example of the theoretical function that I am requesting is:
read_file_contents(&self, start_index: u64, end_index: u64) -> &[u8] { /*code*/ }