File too big
-
Is there any way to open huge files? 12gb+
-
unfortunately notepad++ (64 bit) can not handle files larger than appx 2gb.
you will have to use another program to open these large files.
it has to be one that does not read the whole file into memory, but only a small frame of it, like some hex editors or disk editors. -
-
What kind of monster is that big?
-
What kind of monster is that big?
maybe he wants to open an .mkv movie in notepad++ ? ;-)
-
@Meta-Chuh
100% -
@andrecool-68 asked,
What kind of monster is that big?
In the data manipulation realms – like big data / machine learning, or in the genetic realm’s FASTA files – huge files can be used.
For example: In genetic FASTA files, this site from 7 years ago indicates that the number of bytes of the FASTA file are roughly the same as the number of base pairs; genome.gov says that the human genome is about 3 billion base pairs (so about 3Gb). Per Science magazine, there’s a flower than has 149 billion base pairs, which would be on the order of 150GB in the FASTA text format.
Someone might conceivably try to open that file in a text editor.
-
Try vim for very big files.
-
thanks for your suggestion, @Florent-Pagès
but vim 8.x will take a very, very, very long time, if you try to open a 12gb (12288mb) file on any platform (mac, ubuntu and windows) as it will try to load the entire document first, and only stop when a certain memory limit is reached.
(8.1.1 will crash on occasions on huge files)