Possible Duplicate:
Text Editor for very big file - Windows

I need one editor which can edit huge sizes(100 MB to GBs) of log files in windows.

link|improve this question

62% accept rate
Do you need to actually edit, or is viewing enough? If you need to edit, is it an option to parse the edits with a script? – Tomas Lycken Jun 16 '10 at 7:01
feedback

migrated from stackoverflow.com Jun 16 '10 at 7:27

This question came from our site for professional and enthusiast programmers.

closed as exact duplicate by Mehper C. Palavuzlar, akira, Phoshi, heavyd, grawity Jun 16 '10 at 15:10

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

7 Answers

up vote 6 down vote accepted

You may have a look at gVim.

But i think your question is already answered here!

link|improve this answer
feedback

Do you mean actually edit or just view. I can't think of any other use case other than fraud where you'd want to change a log file :-)

For viewing log files, I just use less from either CygWin or the GNUWin32 suite. Choose the former if you wan every UNIX tool under the sun. Choose the latter if you want to be a bit more selective.

link|improve this answer
cool, didn't know about the GnuWin32 suite, I was always using the ancient unix utils unxutils.sourceforge.net . thanks – seanizer Jun 16 '10 at 7:22
feedback

I've edited large log files with Notepad++, slow as it was, it didn't crash.

link|improve this answer
It's worth noting there's a 64 bit version which in theory should be able to support files larger than 2GB - although in practice it's probably unusable at that scale. – Josh Einstein Jun 16 '10 at 7:01
+1 for Notepad++. However Josh I don't believe there is a 64 bit version of notepad++. – user29646 Jun 16 '10 at 7:08
feedback

Try FirstObject XML Editor. You can just ignore the XML features.

link|improve this answer
feedback

Could you describe what's your purpose ? more then 100mb is too large to edit by a human. Use the sed, perl, or any scripting as the editor is better.

link|improve this answer
If I am to change 1 line in a file, I can edit it. No matter how large it is, and I am human (last time I checked). – daramarak Jun 16 '10 at 12:03
feedback

I believe both the 'vim' and 'emacs' editors handle large files very well (i.e. no slowdown, they don't load the whole file into memory at once).

Both are available for windows, but installation may not be completely straight-forward. If you're familiar with either editor, or know your way around the computer well enough then they may prove useful.

link|improve this answer
feedback

Try Notepad++. It is pretty good.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.