Notepad replacement for viewing very large text files - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T18:39:56Z http://stackoverflow.com/feeds/question/222853 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files 13 Notepad replacement for viewing very large text files Aheho 2008-10-21T18:08:24Z 2009-10-01T18:15:28Z <p>I have a program that creates daily log files that are 30-60MBs in size. I often need to open these files and search for various events. Notepad.exe takes a very long time to open a file that large. I've tried various shareware programs, some are better than notepad, but they all take a while to load these log files. I'm guessing part of the problem is these programs are designed as text-editors. If a program was designed strictly as a text viewer, it could probably handle large files more gracefully (i.e. not have to load the whole file on startup).</p> <p>Does anybody have any recommendations for a notepad replacement that will allow me to view these files quickly?</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222861#222861 0 Answer by Jeff Yates for Notepad replacement for viewing very large text files Jeff Yates 2008-10-21T18:09:35Z 2008-10-21T18:09:35Z <p>Any of the Visual Studio Express editions should achieve this feat, though not very efficiently if the text is one long line.</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222864#222864 18 Answer by Daok for Notepad replacement for viewing very large text files Daok 2008-10-21T18:09:58Z 2008-10-21T18:09:58Z <p><a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow">NotePad++</a> can handle big file.</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222872#222872 1 Answer by mmacaulay for Notepad replacement for viewing very large text files mmacaulay 2008-10-21T18:12:38Z 2008-10-21T18:12:38Z <p>I once tried to open a >1GB file in NotePad++... no dice. For your purposes NotePad++ should do it, but in the event you ever need to open anything bigger: Vim was able to do it just fine.</p> <p>There is a Windows version here:</p> <p><a href="http://www.vim.org/download.php" rel="nofollow">http://www.vim.org/download.php</a></p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222879#222879 3 Answer by Steve Paulo for Notepad replacement for viewing very large text files Steve Paulo 2008-10-21T18:13:39Z 2008-10-21T18:13:39Z <p><a href="http://www.vim.org/" rel="nofollow" title="gVim">gVim</a></p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222880#222880 2 Answer by Tracy Probst for Notepad replacement for viewing very large text files Tracy Probst 2008-10-21T18:13:51Z 2008-10-21T18:13:51Z <p>I use <a href="http://www.fileviewer.com/" rel="nofollow">V - File Fiewer</a></p> <p>It's a $20 shareware program and I use it on log files that are in excess of 1 gigabyte of text. It's a read-only file viewer. It launches fast because it only opens a portion of the file at any one time. I use it daily for quick searches.</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222882#222882 1 Answer by Patrick Cuff for Notepad replacement for viewing very large text files Patrick Cuff 2008-10-21T18:14:11Z 2008-10-21T18:14:11Z <p><a href="http://www.scintilla.org/SciTE.html" rel="nofollow">SciTE</a> is able handle large text files quite easily.</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222883#222883 27 Answer by Gulzar for Notepad replacement for viewing very large text files Gulzar 2008-10-21T18:14:29Z 2008-10-26T05:15:41Z <p><a href="http://www.textpad.com/products/textpad/specifications.html" rel="nofollow">TextPad</a>. As per the specs, it can handle file sizes up to the largest contiguous chunk of virtual memory. </p> <p>If you are looking for a file <strong>viewer</strong>, try <a href="http://www.swiftgear.com/ltfviewer/features.html" rel="nofollow">Large Text File Viewer</a></p> <p>This program was designed for viewing large (>1GB) text files. It uses little memory and is able to open a gigabyte file instantly.</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222889#222889 1 Answer by Bill the Lizard for Notepad replacement for viewing very large text files Bill the Lizard 2008-10-21T18:16:10Z 2008-10-21T18:16:10Z <p>Wordpad can handle much larger files than Notepad, and it's already on your system.</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222890#222890 0 Answer by Conner for Notepad replacement for viewing very large text files Conner 2008-10-21T18:16:11Z 2008-10-21T18:16:11Z <p>Notepad++ all the way</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222892#222892 0 Answer by itsmatt for Notepad replacement for viewing very large text files itsmatt 2008-10-21T18:16:49Z 2008-10-21T18:16:49Z <p>Many more recommendations can be found <a href="http://stackoverflow.com/questions/34215/what-are-the-best-alternatives-to-notepad">here</a>.</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222896#222896 4 Answer by chills42 for Notepad replacement for viewing very large text files chills42 2008-10-21T18:18:04Z 2008-10-21T18:18:04Z <p>I really like <a href="http://www.flos-freeware.ch/notepad2.html" rel="nofollow">notepad2</a>. It's simple, small and works great.</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222899#222899 2 Answer by John Nilsson for Notepad replacement for viewing very large text files John Nilsson 2008-10-21T18:19:02Z 2008-10-21T18:19:02Z <p>Standard unix utils are my suggestion. You can get them on windows with cygwin.</p> <p>less to page through large amount of text grep to find specific rows head or tail to limit the output from grep</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222910#222910 1 Answer by VonC for Notepad replacement for viewing very large text files VonC 2008-10-21T18:22:10Z 2008-10-21T18:22:10Z <p>As said in the question <a href="http://stackoverflow.com/questions/102829/best-free-text-editor-supporting-more-than-4g-files#163941">Best Free Text Editor Supporting <em>More Than</em> 4G Files?</a>, <strong>"<a href="http://www.swiftgear.com/ltfviewer/features.html" rel="nofollow">Large Text Viewer</a>"</strong>, does actually pretty much what it says it does ;) (on Windows)</p> <ul> <li>No installation is needed.</li> <li>The executable is only 568KB!</li> <li>search features (regexp supported)</li> </ul> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222913#222913 0 Answer by Midhat for Notepad replacement for viewing very large text files Midhat 2008-10-21T18:22:33Z 2008-10-21T18:22:33Z <p>GetDiz. Also great for viewing ascii art</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222915#222915 7 Answer by onnodb for Notepad replacement for viewing very large text files onnodb 2008-10-21T18:22:52Z 2008-10-21T18:22:52Z <p>Please make sure you explore the search function on this website; this exact, as well as similar questions, have been asked before. See, e.g.,</p> <ul> <li><a href="http://stackoverflow.com/questions/159521/editor-to-open-big-text-files-xml-export-files">Editor to open big text files</a></li> </ul> <p>Good luck!</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222921#222921 0 Answer by Krzysztof Koźmic for Notepad replacement for viewing very large text files Krzysztof Koźmic 2008-10-21T18:24:49Z 2008-10-21T18:24:49Z <p>If you just want to view the file (not edit it): Total Commander, press F3. Blazing fast! You need to pay for Total Commander though.</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222930#222930 0 Answer by BoltBait for Notepad replacement for viewing very large text files BoltBait 2008-10-21T18:26:49Z 2008-10-21T18:26:49Z <p>Do you really need to "open" the file, maybe you should try "grep" or some other search utility that can display the lines you're searching for. <a href="http://www.google.com/search?&amp;q=grep&amp;btnG=Google+Search" rel="nofollow">http://www.google.com/search?&amp;q=grep&amp;btnG=Google+Search</a> Hope this helps.</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222938#222938 0 Answer by George Stocker for Notepad replacement for viewing very large text files George Stocker 2008-10-21T18:29:00Z 2008-10-21T18:29:00Z <p>Have you tried <a href="http://www.perl.com" rel="nofollow">Perl</a>? No, it isn't a text editor, but a quick perl script can allow you to search through your log file without ever having to load it manually. Here's how:</p> <p>Download the latest Perl Build. If you're on Windows, download either '<a href="http://strawberryperl.com/" rel="nofollow">Strawberry Perl</a>' or '<a href="http://www.activestate.com/Products/activeperl/index.mhtml" rel="nofollow">ActiveState Perl</a>'.</p> <p>At that point, simply go to the command line and type the following command:</p> <p><code>perl -ne '/yoursearchhere/ and print' yourfilename.txt</code>.</p> <p>When I was a system administrator, I would often use Perl to search through oppressively long log files. If your job involves dealing with text in any way, and you find yourself hunting for information all day, I'd recommend learning Perl. It will save you over the long run.</p> <p>For instance, with Perl, you can:</p> <p>Do a batch search and replace on all the files in your web directory based on a condition (in about 10 lines of code), break log files down into small, manageable sizes, and use it for just about anything else you can imagine you'd ever want to do with text.</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222939#222939 0 Answer by ephemient for Notepad replacement for viewing very large text files ephemient 2008-10-21T18:29:17Z 2008-10-21T18:29:17Z <p>If you don't want to fetch a utility that doesn't ship with Windows, Wordpad handles large files text much better than Notepad does.</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222945#222945 1 Answer by dlamblin for Notepad replacement for viewing very large text files dlamblin 2008-10-21T18:30:18Z 2008-10-21T18:49:27Z <p>In my experience <em>Notepad++</em> works only to a certain limit; after that it can <em>garble</em> the text on long lines or make scrolling to the bottom act very glitchy.</p> <p>A long time ago I used to use <a href="http://eriksrailnews.com/pepper/" rel="nofollow">Pepper</a> for this purpose (very large files) and found it to work well.</p> <p>Unfortunately it's a tad old so registering it hard to do.</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/222982#222982 0 Answer by Nikhil for Notepad replacement for viewing very large text files Nikhil 2008-10-21T18:44:20Z 2008-10-21T18:44:20Z <p><a href="http://www.flos-freeware.ch/notepad2.html" rel="nofollow">Notepad2</a> solves both of your concerns. It handles large files better than most other text editors. I have been able to open files >200 MB in Notepad2. And the search functionality is pretty fast and powerful and allows advanced regex searches. On top of that it's pretty lightweight. And its free.</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/223004#223004 0 Answer by braveterry for Notepad replacement for viewing very large text files braveterry 2008-10-21T18:49:31Z 2008-10-21T18:49:31Z <p>I use <a href="http://www.ultraedit.com/" rel="nofollow">UltraEdit</a>. From the site's marketing spiel:</p> <blockquote> <p>Disk based text editing and large file handling - supports files in excess of 4GB, minimum RAM used even for multi-megabyte files</p> </blockquote> <p>It costs $49.95, but I've been using it for nearly 7 years now and it has definitely been worth it. You can download and use it for free for 45 days. If you're looking for a free or Open Source solution, you should look for a disk-based editor.</p> <p>Also, if you have something like <a href="http://www.cygwin.com/" rel="nofollow">Cygwin</a> or <a href="http://en.wikipedia.org/wiki/Microsoft_Windows_Services_for_UNIX" rel="nofollow">Windows Services for Unix</a> installed, you could use the <a href="http://en.wikipedia.org/wiki/Less_(Unix)" rel="nofollow">less</a> viewer or something similar to view your logs.</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/223077#223077 1 Answer by PhiLho for Notepad replacement for viewing very large text files PhiLho 2008-10-21T19:05:52Z 2008-10-21T19:05:52Z <p>The question sounds familiar:</p> <ul> <li><a href="http://stackoverflow.com/questions/102829/best-free-text-editor-supporting-more-than-4g-files" rel="nofollow" title="Best Free Text Editor Supporting More Than 4G Files?">Best Free Text Editor Supporting More Than 4G Files?</a></li> <li><a href="http://stackoverflow.com/questions/159521/editor-to-open-big-text-files-xml-export-files" rel="nofollow" title="Editor to open big text files (XML export files)">Editor to open big text files (XML export files)</a></li> <li><a href="http://stackoverflow.com/questions/180435/graphical-open-source-text-editor-for-large-text-files-200-mbytes" rel="nofollow" title="Graphical open source text editor for large text files (&gt; 200 MBytes)">Graphical open source text editor for large text files (&gt; 200 MBytes)</a></li> </ul> <p>Sic.</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/494015#494015 0 Answer by Rob Kam for Notepad replacement for viewing very large text files Rob Kam 2009-01-30T00:01:35Z 2009-01-30T00:01:35Z <p>With <a href="http://www.ztree.com/html/ztreewin.htm" rel="nofollow">ZTree</a> you can easily search, view, copy selected text, etc. from very large files or multiple files.</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/506280#506280 0 Answer by Hosam Aly for Notepad replacement for viewing very large text files Hosam Aly 2009-02-03T07:52:37Z 2009-02-03T07:52:37Z <p><a href="http://www.emeditor.com/" rel="nofollow">EmEditor</a></p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/506336#506336 0 Answer by Gerhard for Notepad replacement for viewing very large text files Gerhard 2009-02-03T08:21:58Z 2009-02-03T08:21:58Z <p>Loading a large file into memory takes a long time. Try using an editor that displays from disk, it is faster on large file. It seams like you only want to view not edit the files so just use <code>grep</code> or something similar to filter and pipe to a file just the lines you want to see and only open that in a editor. </p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/528360#528360 1 Answer by PoorLuzer for Notepad replacement for viewing very large text files PoorLuzer 2009-02-09T14:35:44Z 2009-02-09T14:35:44Z <p>Large Text Viewer is guaranteed to work - not sure about others like Notepad++, UltraEdit etc - do they open files more than 1GB in an instant?</p> <p>Don't think so!</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files/1505567#1505567 0 Answer by Todd for Notepad replacement for viewing very large text files Todd 2009-10-01T18:15:28Z 2009-10-01T18:15:28Z <p>Along with Tracy Probst, I also use V the Fileviewer, <a href="http://www.fileviewer.com" rel="nofollow">http://www.fileviewer.com</a> by Charles Prineas. It's $20 but worth far more.</p> <p>I'm surprised more people don't know about this program, particularly programmers. It's a file browser and Windows Explorer alternative that views and opens files. I use it every day to view the contents and structure of all kinds of files. It views files in hex and "flat binary" as well as text, Unicode, EBCDIC if you need that, and lots of other options.</p> <p>I initially came across V years ago when looking for a Windows version of Vern Buerg's old LIST program for DOS, which may give older programmers an idea of what kind of utility it is. I haven't come across anything that is closer to "LIST for Windows" than V.</p> <p>I was interested in people's references to Large Text File Viewer so I tried it. It may open large files quickly, but it's excruciatingly slow scrolling and moving through them. V by comparison is lightning fast at opening and viewing. </p> <p>I opened the LTF exe in LTF itself and it took a noticeable pause, and it's only 586K. Turning off the graphic background helped. Pressing Ctrl+PgDn to go to the end of the file took over a second. Opening the same file in V was instantaneous, as was jumping to the end. (Granted it was cached, but eyeball tests on larger files were just as fast).</p> <p>I came to this thread by searching for "file viewer" and am astonished more programmers don't use a general purpose file viewer instead of text and hex editors, and I don't know why there aren't more such programs. We deal with files in a wide array of formats all the time. It makes sense to use a single program to browse and view and work with them instead of going in and out of an editor to do so, especially when you're not intending to edit them.</p>