Top "Binaryfiles" questions

A binary file is a computer file which may contain any type of data, encoded in binary form for computer storage and processing purposes.

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 …

c++ c binaryfiles
Difference between "ASCII" and "Binary" formats in PETSc

I wanted to know what the difference is between binary format and ASCII format. The thing is I need to …

ascii binaryfiles file-format petsc
How to read float values from binary file using c#?

I'm trying to read float values from a binary file, public static void tmpTest ( ) { string fileName = @"c:\debug\tmp_1.bin"; /* …

c# binaryfiles
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 …

colors binaryfiles color-palette
What are possible reasons for binary files corruption on android devices

Recently I'm investigating reasons for binary file corruption. Specificly, we have an android app, the native part can read/write …

android c++ c linux binaryfiles
Writing files in bit form to a file in C

I am implementing the huffman algorithm in C. I have got the basic functionality down up to the point where …

c bit-manipulation binaryfiles huffman-code
SQLite: insert binary data from command line

I have this SQLite table: create table mytable ( aid INTEGER NOT NULL PRIMARY KEY, bid INTEGER NOT NULL, image BLOB ); …

sqlite blob binaryfiles