Tagged Questions
The large-files tag has no wiki summary.
256
votes
51answers
195k views
Text editor to open big (giant, huge, large) text files [closed]
I mean 100+ MB big; such text files can push the envelope of editors.
I need to look through a large XML file, but cannot if the editor is buggy.
Any suggestions?
88
votes
6answers
31k views
Managing large binary files with git
I am looking for opinions of how to handle large binary files on which my source code (web application) is dependent. We are currently discussing several alternatives:
Copy the binary files by hand.
...
26
votes
7answers
6k views
What is the fastest way to create a checksum for large files in C#
I have to sync large files across some machines. The files can be up to 6GB in size. The sync will be done manually every few weeks. I cant take the filename into consideration because they can ...
24
votes
8answers
2k views
large amount of data in many text files - how to process?
I have large amounts of data (a few terabytes) and accumulating... They are contained in many tab-delimited flat text files (each about 30MB). Most of the task involves reading the data and ...
22
votes
7answers
37k views
Number of lines in a file in Java
I use huge data files, sometimes I only need to know the number of lines in these files, usually I open them up and read them line by line until I reach the end of the file
I was wondering if there ...
21
votes
19answers
28k views
Best Free Text Editor Supporting *More Than* 4GB Files?
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 ...
18
votes
11answers
3k views
Very large uploads with PHP
I want to allow uploads of very large files into our PHP application (hundred of megs - 8 gigs). There are a couple of problems with this however.
Browser:
HTML uploads have crappy feedback, we ...
14
votes
8answers
888 views
How to scan through really huge files on disk?
Considering a really huge file(maybe more than 4GB) on disk,I want to scan through this file and calculate the times of a specific binary pattern occurs.
My thought is:
Use memory-mapped ...
14
votes
6answers
6k views
Binary search in a sorted (memory-mapped ?) file in Java
I am struggling to port a Perl program to Java, and learning Java as I go. A central component of the original program is a Perl module that does string prefix lookups in a +500 GB sorted text file ...
13
votes
6answers
266 views
Searching for a string in a large text file - profiling various methods in python
This question has been asked many times. After spending some time reading the answers, I did some quick profiling to try out the various methods mentioned previously...
I have a 600 MB file ...
13
votes
5answers
3k views
Upload 1GB files using chunking in PHP
I have a web application that accepts file uploads of up to 4 MB. The server side script is PHP and web server is NGINX. Many users have requested to increase this limit drastically to allow upload of ...
10
votes
7answers
5k views
Linux text editor for working with huge files
I have a huge (~2GB) file that I need to navigate around. I don't actually need to edit it, just jump around efficiently.
I tried vim but it choked.
Any recommendations for working with huge files ...
10
votes
11answers
6k views
How best to use XPath with very large XML files in .NET?
I need to do some processing on fairly large XML files ( large here being potentially upwards of a gigabyte ) in C# including performing some complex xpath queries. The problem I have is that the ...
10
votes
7answers
1k views
What's the best way to sync large amounts of data around the world?
I have a great deal of data to keep synchronized over 4 or 5 sites around the world, around half a terabyte at each site. This changes (either adds or changes) by around 1.4 Gigabytes per day, and the ...
10
votes
5answers
2k views
Is there a distributed VCS that can manage large files?
Is there a distributed version control system (git, bazaar, mercurial, darcs etc.) that can handle files larger than available RAM?
I need to be able to commit large binary files (i.e. datasets, ...
9
votes
8answers
849 views
PHP x86 How to get filesize of >2GB file without external program?
I need to get file size of file over 2GB size. (testing on 4.6GB file) It there any way to do this without external program?
Current status:
filesize(), stat() and fseek() fails
fread() and feof() ...
9
votes
1answer
2k views
Database over 2GB in MongoDB
We've got a file-based program we want to convert to use a document database, specifically MongoDB. Problem is, MongoDB is limited to 2GB on 32-bit machines (according to ...
9
votes
8answers
7k views
Best way to process large XML in PHP
I have to parse large XML files in php, one of them is 6.5 MB and they could be even bigger.
The SimpleXML extension as I've read, loads the entire file into an object, which may not be very ...
9
votes
8answers
3k views
Reading Huge File in Python
I have a 384MB text file with 50 million lines. Each line contains 2 space-separated integers: a key and a value. The file is sorted by key. I need an efficient way of looking up the values of a list ...
8
votes
1answer
162 views
Performance drop with fputs after writing more than 2,5GB. Why?
Currently I'm working on a small program that reads large files and sorts them. After some benchmarking I stumbled upon a weird performance issue. When the input file got to large the writing of the ...
8
votes
3answers
720 views
Charting massive amounts of data
We are currently using ZedGraph to draw a line chart of some data. The input data comes from a file of arbitrary size, therefore, we do not know what the maximum number of datapoints in advance. ...
8
votes
4answers
741 views
How to send mail with large size attachment using System.Net.Mail to Google Apps?
I am trying to send mail with large size attachment upto (1MB,2MB).
But sending mail fails.(Sending to Google Apps) as:
MailItemEntry[] entries = new MailItemEntry[1];
String EmlPath = ...
8
votes
15answers
1k views
How can you concatenate two huge files with very little spare disk space?
Suppose that you have two huge files (several GB) that you want to concatenate together, but that you have very little spare disk space (let's say a couple hundred MB). That is, given file1 and ...
7
votes
3answers
84 views
How to cleanly handle source code and data in a repository
I'm working on a collaborative scientific project that is made up by a handful of Python scripts (1M max) and a relatively large dataset (1.5 GB). The datasets are tightly linked to the python ...
7
votes
4answers
1k views
Reading large txt efficiently in c++
I have to read a large text file (> 10 GB) in C++. This is a csv file with variable length lines. when I try to read line by line using ifstream it works but takes long time, i guess this is becuase ...
7
votes
6answers
8k views
Parsing Huge XML Files in PHP
I'm trying to parse the dmoz content/structures xml files into mysql, but all existing scripts to do this are very old and don't work well. How can I go about opening a large (+1GB) xml file in php ...
7
votes
4answers
3k views
Nuking huge file in svn repository
As the local subversion czar i explain to everyone to keep only source code and non-huge text files in the repository, not huge binary data files. Smaller binary files that are parts of tests, maybe. ...
6
votes
5answers
87 views
Get Large File Size in C
Before anyone complains of "duplicate", i've been checking SO quite thoroughly, but there seem to be no clean answer yet, although the question looks quite simple.
I'm looking for a portable C code, ...
6
votes
3answers
135 views
Sorting gigantic binary files with C#
I have a large file of roughly 400 GB of size. Generated daily by an external closed system. It is a binary file with the following format:
byte[8]byte[4]byte[n]
Where n is equal to the int32 ...
6
votes
4answers
146 views
need help designing for search algorithm in a more efficient way
I have a problem that involves biology area. Right now I have 4 VERY LARGE files(each with 0.1 billion lines), but the structure is rather simple, each line of these files has only 2 fields, both ...
6
votes
3answers
333 views
c++ text file reading performance
I'm trying to migrate a c# program to c++.
The c# program reads a 1~5 gb sized text file line by line and does some analysis on each line.
The c# code is like below.
using (var f = ...
6
votes
1answer
469 views
java.io.RandomAccessFile Invalid Argument for large files on mac
I'm running a program which needs random access to a very large file (approximately 151 gigabytes). I've found that whenever it runs on one of the MacPro machines in the Orchard lab ( details at ...
6
votes
3answers
933 views
How do I read a large CSV file with Scala Stream class?
How do I read a large CSV file (> 1 Gb) with a Scala Stream? Do you have a code example? Or would you use a different way to read a large CSV file without loading it into memory first?
6
votes
3answers
683 views
Random access gzip stream
I'd like to be able to do random access into a gzipped file.
I can afford to do some preprocessing on it (say, build some kind of index), provided that the result of the preprocessing is much smaller ...
6
votes
6answers
14k views
Reading large text files with streams in C#
I've got the lovely task of working out how to handle large files being loaded into our application's script editor (its like VBA for our internal product for quick macros). Most files are about ...
6
votes
3answers
2k views
Viewing large XML files in eclipse?
I'm working on a project involving some large XML files (from 50MB to over 1GB) and it would be nice if I could view them in eclipse (simple text view is fine) without Java running out of heap space. ...
6
votes
4answers
1k views
How may I scroll with vim into a big file?
I have a big file with thousands of lines of thousands of characters.
I move the cursor to 3000th character.
If I use PageDown or <CTRL>-D, the file will scroll but the cursor will come back ...
6
votes
4answers
2k views
java.util.zip.ZipException: too many entries in ZIP file
I am trying to write a Java class to extract a large zip file containing ~74000 XML files. I get the following exception when attempting to unzip it utilizing the java zip library:
...
6
votes
11answers
571 views
Are there version control systems that allow you to permanently delete files?
I need to keep under version some large files (some Gigs).
I don't need, and I can't keep under version all the version of the files.
I want to be able to remove from my VCS large files version at ...
6
votes
5answers
5k views
Upload large files in .NET
I've done a good bit of research to find an upload component for .NET that I can use to upload large files, has a progress bar, and can resume the upload of large files. I've come across some ...
6
votes
8answers
4k views
Fastest possible XML handling in Delphi for very large documents
I need recommendations on what to use in Delphi (I use Delphi 2009) to handle very large XML files (e.g. 100 MB) as fast as possible.
I need to input the XML, access and update the data in it from ...
5
votes
1answer
116 views
How can one monitor what part of big file changed
Is there solution for Linux kernel-3.0 (or later) that allows one to get notifications similar to inotify describing particular segment of file that was changed?
There was fschange patch for up to ...
5
votes
4answers
207 views
In R, how can read lines by number from a large file?
I have a file with 15 million lines (will not fit in memory). I also have a small vector of line numbers - the lines that I want to extract.
How can I read-out the lines in one pass?
Edit:
I was ...
5
votes
2answers
474 views
Reading and graphing data read from huge files
We have pretty large files, the order of 1-1.5 GB combined (mostly log files) with raw data that is easily parseable to a csv, which is subsequently supposed to be graphed to generate a set of graph ...
5
votes
5answers
675 views
How Can I Efficiently Read The FIrst Few Lines of Many Files in Delphi
I have a "Find Files" function in my program that will find text files with the .ged suffix that my program reads. I display the found results in an explorer-like window that looks like this:
I use ...
5
votes
3answers
481 views
most efficient way to find partial string matches in large file of strings (python)
I downloaded the Wikipedia article titles file which contains the name of every Wikipedia article. I need to search for all the article titles that may be a possible match. For example, I might have ...
5
votes
4answers
5k views
Uploadify alternative? Need to upload large 1GB+ files [closed]
Basically I am just wanting something that I can implement that will allow large (1GB+) file uploads without having timeout issues.
I already know of SWFUpload. didn't really get into that much as it ...
5
votes
5answers
405 views
c handle large file
I need to parse a file that could be many gbs in size. I would like to do this in C. Can anyone suggest any methods to accomplish this?
The file that I need to open and parse is a hard drive dump ...
5
votes
4answers
565 views
Estimating the word count of a file without reading the full file
I have a program to process very large files. Now I need to show a progress bar to show the progress of the processing. The program works on a word level, read one line at a time, splitting it into ...
5
votes
3answers
338 views
Serving Large Protected Files in PHP/Apache
I need to serve up large files (> 2gb) from an Apache web server. The files are protected downloads, so I need some kind of way to authorize the user. The CMS I'm using uses cookies checked against a ...