25GB file into my (self made)hex Viewer make's loading endlessly.
but 25GB file into HxD(free Software), it doesn't takes just one second!
how can it be possible!?
i wondering about principle of HxD.
help me please..?
25GB file into my (self made)hex Viewer make's loading endlessly.
but 25GB file into HxD(free Software), it doesn't takes just one second!
how can it be possible!?
i wondering about principle of HxD.
help me please..?
One thing is how big files your editor can edit theoretically. But another thing is, is it fast enough to realistically edit that file.
Most editors use the easy way and simply load the whole file in memory. This means that you can not edit files larger than the largest free memory block. This gets even worse if the editor converts ASCII file into Unicode, which doubles the size. With editors like this, just opening the file may take several minutes. But even if you can load the file, any editing operations may be so slow that you really can not do anything.
You will get better info on Wiki.