Tagged Questions
The binaryfiles tag has no wiki summary.
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.
...
19
votes
2answers
3k views
Evaluating HDF5: What limitations/features does HDF5 provide for modelling data?
We are in evaluating technologies that we'll use to store data that we gather during the analysis of C/C++ code. In the case of C++, the amount of data can be relatively large, ~20Mb per TU.
After ...
17
votes
7answers
1k views
Fastest way to read every 30th byte of large binary file?
What is the fastest way to read every 30th byte of a large binary file (2-3 GB)? I've read there are performance problems with fseek because of I/O buffers, but I don't want to read 2-3 GB of data ...
16
votes
1answer
921 views
.NET 4.0 Memory Mapped Files Performance
I'd like to know if anyone tried new .NET 4.0 Memory Mapped Files features?
I know that they are as old as OS but native handling in .NET is new.
Has anyone been able to test this and say something ...
16
votes
9answers
21k views
Read binary file into a struct C#
I'm trying to read binary data using C#. I have all information about the layout of the data in the files I want to read. I'm able to read the data "chunk by chunk", i.e. getting the first 40 bytes of ...
15
votes
1answer
7k views
Can I hex edit a file in Visual Studio?
I want to edit a binary file but I don't want to use another tool other than Visual Studio because it's a pain to switch back and forth.
Is there perhaps a add-in or some built in functionality ...
12
votes
4answers
10k views
Git or Subversion for binary files
We need to store binary files (mostly MS Word documents, ranging from a couple of KB to a couple of MB in size) in a version control repository with over 100 "projects". Currently we use Visual Source ...
9
votes
4answers
1k views
JPG+Zip File Combination Problem with Zip Format
Hopefully you've heard of the neat hack that lets you combine a JPG and a Zip file into a single file and it's a valid (or at least readable) file for both formats. Well, I realized that since JPG ...
8
votes
5answers
5k views
php: recreate and display an image from binary data
Is it possible to recreate images from binary data (process them if needed) and display them, all in the same script? Something like
// get and display image 1:
$imagedata1 = ...
7
votes
3answers
117 views
Diff for 3 binary files
I have 3 binary files. Let's call them file1.bin, file2.bin and file3.bin.
file1.bin and file2.bin have some common parts.
file2.bin and file3.bin have some common parts.
I want to find the common ...
7
votes
0answers
139 views
Building a 1,000M row MySQL table [closed]
reposted on serverfault
Questions
Question 1: as the size of the database table gets larger how can I tune MySQL to increase the speed of the LOAD DATA INFILE call?
Question 2: would using a ...
7
votes
6answers
317 views
read/write to a large size file in java
i have a binary file with following format :
[N bytes identifier & record length] [n1 bytes data]
[N bytes identifier & record length] [n2 bytes data]
[N bytes identifier & record ...
7
votes
3answers
2k views
C# - How do I read and write a binary file?
How do I read a raw byte array from any file, and write that byte array back into a new file?
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
570 views
For binary files should I use bfiles or bigfiles?
There are a few mercurial extensions for dealing with large binary files.
Bfiles
BigFiles
Snap
kbfiles
others?
I'd like to use the one that is most likely to be official (ie distributed with ...
6
votes
3answers
3k views
Convert big endian to little endian when reading from a binary file
Hi I'm been looking around how to convert big endian to little endians. But I didn't find any good that could solve my problem. It seem to be there's many way you can do this conversion. Anyway this ...
6
votes
3answers
668 views
How does git deal with binary files?
Do I have to set something to tell git if some files are binary, just like svn? Or, git just can handle binary data automatically?
If I change the binary file, so that I have 100 binary revisions, ...
6
votes
2answers
2k views
Searching for a sequence of Bytes in a Binary File with Java
I have a sequence of bytes that I have to search for in a set of Binary files using Java.
Example: I'm searching for the byte sequence DEADBEEF (in hex) in a Binary file.
How would I go about doing ...
6
votes
3answers
2k views
Parsing a binary file in Ruby
I need to be able to parse a binary file with Ruby. This file contains chunks of data that are found via a header that includes the file offset and length of each chunk.
How do I get the data out ...
6
votes
7answers
2k views
What exactly causes binary file “gibberish”?
I haven't found an answer to this particular question; perhaps there isn't one. But I've been wondering for a while about it.
What exactly causes a binary file to display as "gibberish" when you look ...
5
votes
1answer
310 views
How to convert Mathematica binary dump file to list of definitions?
As the Documentation says, "DumpSave writes out definitions in a binary format that is optimized for input by Mathematica." Is there a way to convert a Mathematica binary dump file back to the list of ...
5
votes
3answers
467 views
read entire binary file into an array in single call c++
I am trying to read a binary file into an array of structure
struct FeaturePoint
{
FeaturePoint (const int & _cluster_id,
const float _x,
const float _y,
...
5
votes
6answers
199 views
General question about Binary files
I am a beginner and I am having trouble in grasping binary files. When I write to a file in binary mode (in python), I just write normal text. There is nothing binary about it. I know every file on my ...
5
votes
6answers
290 views
Binary file format with 1000s of records in C#
I would like to have an array model objects to be serialized to a binary stream. The model class will mainly have string and integer properties.
I believe that I can mark the class as [Serializable] ...
5
votes
5answers
664 views
Can GIT, Mercurial, SVN, or other version control tools work well when project tree has binary files?
Sometimes our project tree can have binary files, such as jpg, png, doc, xls, or pdf. Can GIT, Mercurial, SVN, or other tools do a good job when only part of a binary file is changed?
For example, ...
5
votes
11answers
14k views
how to edit binary file on the unix systems
On windows machine there are lots of third party editors available to edit a binary file.
I belive there should be some thing similer buildin in the *nix systems as well.
any idea how can i edit a ...
5
votes
4answers
325 views
Most efficient way of loading formatted binary files in Python
I have binary files no larger than 20Mb in size that have a header section and then a data section containing sequences of uchars. I have Numpy, SciPy, etc. and each library has different ways of ...
5
votes
4answers
1k views
How to reverse engineer binary file formats for compatibility purposes
I am working of a file preparation software to enable translators work easily and efficiently on a wide range of file formats.
As far as text-based formats (xml, php, resource files,...) are ...
5
votes
10answers
2k views
What to put in a binary data file's header
I have a simulation that reads large binary data files that we create (10s to 100s of GB). We use binary for speed reasons. These files are system dependent, converted from text files on each system ...
5
votes
9answers
1k views
Any Generic Utilities or Libraries for Converting Hex Dumps into Human-readable Form?
I work a lot with serial communications with a variety of devices, and so I often have to analyze hex dumps in log files. Currently, I do this manually by looking at the dumps, looking at the ...
5
votes
4answers
2k views
Programmatically determine video file format?
Ok, I get the basics of video format - there are some container formats and then you have core video/audio formats. I would like to write a web based application that determines what video/audio codec ...
4
votes
2answers
194 views
Why is the binary output not equal when compiling again?
I'm using a build script to compile several C# projects. The binary output is copied to a result folder, overwriting the previous version of the files, and then added/committed to subversion.
I ...
4
votes
3answers
607 views
Diff A Directory Recursively, Ignoring All Binary Files:
Working on a Fedora Constantine box. I am looking to diff two directories recursively to check for source changes. Due to the setup of the project (prior to my own engagement with said project! sigh), ...
4
votes
1answer
248 views
How do I tell TortoiseHg that a file is not binary?
Someone has recently added a PowerShell (.ps1) script to our Mercurial repository. The file is plain text but TortoiseHg seems to think it's binary and displays a message: "File or diffs not ...
4
votes
4answers
771 views
Get fast random access to binary files, but also sequential when needed. How to layout?
I have about 1 billion datasets that have a DatasetKey and each has between 1 and 50 000 000 child entries (some objects), average is about 100, but there are many fat tails.
Once the data is ...
4
votes
3answers
500 views
Extract Binary Data from SQL Server using T-SQL
I have a database to which I upload files (such as PDFs, images, etc). I save these to the database as Varbinary (max).
I upload these files using C# MVC. What I was wondering is how can I view ...
4
votes
1answer
1k views
Tell git not to merge binary files but to choose
When the binary files, swfs, jars and flvs are changed locally, and I try to pull in changes, git tries to merge them and reports conflict.
And then, I branch to a temporary branch, and commit the ...
4
votes
2answers
577 views
How can I open a binary file in Perl, change ONLY the first byte, and write it back out?
Very similar to Changing one byte in a file in C, but in Perl instead of C.
How can I open a binary file in Perl, change ONLY the first byte, and write it back out?
4
votes
3answers
3k views
Bash Script - Read Binary File
I'm new to scripting, but I have a lot of experience programming in languages such as C# and Java.
I have a file that contains binary data. I want to write a Bash script that reads the year, month, ...
4
votes
7answers
2k views
How should I save a file in OpenOffice so that it is not a binary file in Subversion?
I'm working on an Open Office document with a partner and we are using subversion to collaborate on it. However, we are saving the document as a .odt file and subversion reads this as a binary file ...
4
votes
2answers
1k views
how to parse binary files in Clojure
What is the cleanest way to parse binary data in clojure?
I need to be able to read/write equally cleanly to a file or a socket.
something like:
(read-data source-of-data)
=> { :index 42 , ...
4
votes
2answers
2k views
Reading compound documents in c#
I'm starting a project which requires reading outlook msg files in c#. I have the specs for compound documents but am having trouble reading them in c#. Any pointers would be greatly appreciated.
...
4
votes
2answers
3k views
How can I stream an XPS document to a browser and embed it in a webpage?
I'm looking for some suggestions on how to go about this. Any input is appreciated!
Currently, I have an ASP.NET MVC application. On the client, I have a link with an ID of an XPS document. When ...
3
votes
1answer
78 views
python get unicode string size
I have a binary file. This file contains an UTF-8 string. Moreover, it is guaranteed that this string is just a single word.
In python, how can I get number of letters in this string?
Let's say, I ...
3
votes
7answers
208 views
Serializing a class which contains a std::string
I'm not a c++ expert but I've serialized things a couple of times in the past. Unfortunately this time I'm trying to serialize a class which contains a std::string, which I understand is pretty much ...
3
votes
2answers
151 views
Write binary file in R
I am asked to write R output in two binary files, an index file and a main data file. There will be one matrix/block corresponding to each id in the index file. I have read about writing binary files ...
3
votes
2answers
159 views
Are there standard 8-bit color palettes?
I'm attempting to reverse engineer a file format from a logging program. It seems to use a 1-2 byte field which may be used for label colors, as it seems to be the only thing that's unexplained. ...
3
votes
3answers
287 views
Reading 32 bit signed ieee 754 floating points from a binary file with python?
I have a binary file which is simple a list of signed 32 bit ieee754 floating point numbers. They are not separated by anything, and simply appear one after another until EOF.
How would I read from ...
3
votes
2answers
142 views
Many binary files synchronization
I have about 100 000 files on office server (images, pdf's, etc...)
Each day files count grows about 100-500 items, and about 20-50 old files changes.
What is the best way to synchronize Web-server ...
3
votes
1answer
403 views
Using binary data in C++ string
I am working with binary data coming from a service provider. I am subscribing to this data through HTTP request, using C++.
Every now and then, I get an HTML payload coming from this provider. The ...