I am looking for a text editor that will be able to load a 4+ Gigabyte file into it. Textpad doesn't work. I own a copy of it and have been to its support site, it just doesn't do it. Maybe I need new hardware, but that's a different question. The editor needs to be free OR, if its going to cost me, then no more than $30. For Windows.
|
|
Just for the record, and to complete this list: You may want to check "Large Text Viewer", which does... pretty much what it says it does ;) (on Windows)
Warning: for search and regexp, LTV might not be the best tool.
I've switched to using glogg instead So glogg could also be considered, for a different usage:
|
|||||||||||||||||||
|
|
I've had to look at monster(runaway) log files (20+ GB). I used hexedit FREE version which can work with any size files. It is also open source. It is a Windows executable. |
|||||
|
|
|
Jeff Atwood has a post on this here: http://www.codinghorror.com/blog/archives/000229.html He eventually went with Edit Pad Pro, because "Based on my prior usage history, I felt that EditPad Pro was the best fit: it's quite fast on large text files, has best-of-breed regex support, and it doesn't pretend to be an IDE." |
||||
|
|
|
It's really tough to handle a 4G file as such. I used to handle larger text files, but I never used to load them in to my editor. I mostly used UltraEdit in my previous company, now I use Notepad++, but I would get just those parts which i needed to edit. (Most of the cases, the files never needed an edit). Why do u want to load such a big file in to an editor? When I handled files of these size, I used GNU Core Utils. The most common operations i performed on those files were head ( to get the top 250k lines etc ), tail, split, sort, shuf, uniq etc. It's really powerful. There's a lot of things you can do with GNU Core Utils. I would definitely recommend those, instead of a new editor. |
|||||
|
|
Instead of loading a gigantic log file in an editor, I'm using Unix command line tools like On Windows, try Cygwin. |
|||
|
|
Sorry to post on such an old thread, but I tried several of the tips here, and none of them worked for me. It's slightly different than a text editor, but I found that Beyond Compare could handle an extremely large (3.6 Gig) file on my Vista 32-bit machine. This is a file that that Emacs, Large Text File Viewer, HexEdit, and Notepad++ all choked on. -Eric |
|||
|
|
|
Have you tried context editor? It is small and fast. |
||||
|
|
|
I Stumbled on this post many times, as I often need to handle huge files (10 Gigas+). I am very surprised nobody answered that (Except a previous answer but for MacOS)... For the record I stumbled on it on this blog post, which wisely adviced it. |
|||
|
|
|
For windows, unix, or Mac? On the Mac or *nix you can use command line or GUI versions of emacs or vim. For the Mac: TextWrangler to handle big files well. I'm not versed enough on the Windows landscape to help out there. |
|||
|
|
|
I have had problems with TextPad on 4G files too. Notepad++ works nicely. |
|||||||||
|
|
f you just want to view a large file rather than edit it, there are a couple of freeware programs that read files a chunk at a time rather than trying to load the entire file in to memory. I use these when I need to read through large ( > 5 GB) files. Large Text File Viewer by swiftgear http://www.swiftgear.com/ltfviewer/features.html Big File Viewer by Team Walrus. You'll have to find the link yourself for that last one because the I can only post a maximum of one hyperlink being a newbie. |
|||
|
|
When I'm faced with an enormous log file, I don't try to look at the whole thing, I use Free File Splitter Admittedly this is a workaround rather than a solution, and there are times when you would need the whole file. But often I only need to see a few lines from a larger file and that seems to be your problem too. If not, maybe others would find that utility useful. A viewer that lets you see enormous text files isn't much help if you are trying to get it loaded into Excel to use the Autofilter, for example. Since we all spend the day breaking down problems into smaller parts to be able to solve them, applying the same principle to a large file didn't strike me as contentious. |
||||
|
|
|
Tweak is a hex editor which can handle edits to very large files, including inserts and deletes. |
|||
|
|
|
Emacs can handle huge file sizes and you can use it on Windows or *nix. |
|||||||||||||||||
|
|
The question would need more details. To abstract the memory limit, I suppose one can use mapped memory. But then, if you need to edit the file, some clever method should be used, like storing in memory the local changes, and applying them chunk by chunk when saving. Might be ineffective in some cases (big search/replace for example). |
|||||||||||
|
|
HxD -- it's a hexeditor, but it allows in place edits, and doesn't barf on large files. |
|||
|
|
|
EmEditor should handle this. As their site claims:
Not free though.. |
|||
|
|
|
I also like notepad++. |
|||||
|
|
Textpad also works well at opening files that size. I have done it many times when having to deal with extremely large log files in the 3-5gb range. Also, using grep to pull out the worthwhile lines and then look at those works great. |
|||
|
|
What OS and CPU are you using? If you are using a 32-bit OS, then a process on your system physically cannot address more than 4GB of memory. Since most text editors try to load the entire file into memory, I doubt you'll find one that will do what you want. It would have to be a very fancy text editor, that can do out-of-core processing, i. e. load a chunk of the file at a time. You may be able to load such a huge file with if you use a 64-bit text editor on a computer with a 64-bit CPU and a 64-bit operating system. And you have to make sure that you have enough space in your swap partition or your swap file. |
|||||||||||||
|
|
Why do you want to load a 4+ GB file into memory? Even if you find a text editor that can do that, does your machine have 4 GB of memory? And unless it has a lot more than 4 GB in physical memory, your machine will slow down a lot and go swap file crazy. So why do you want a 4+ GB file? If you want to transform it, or do a search and replace, you may be better off writing a small quick program to do it. |
|||||||
|
protected by NikiC Oct 22 '11 at 11:55
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
