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.

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 …

php image binaryfiles
How to read a binary file into a vector of unsigned chars

Lately I've been asked to write a function that reads the binary file into the std::vector<BYTE> …

c++ file-io vector binaryfiles
Best way to read structured binary files with Java

I have to read a binary file in a legacy format with Java. In a nutshell the file has a …

java file binaryfiles
How to read / write a struct in Binary Files?

I am facing a small problem. I have a struct, which has a vector. Note that the vector is dynamic …

c++ vector struct binaryfiles
Read binary file into a struct

I'm trying to read binary data using C#. I have all the information about the layout of the data in …

c# struct io binaryfiles
Convert big endian to little endian when reading from a binary file

I've been looking around how to convert big-endian to little-endians. But I didn't find any good that could solve my …

c++ binaryfiles endianness
C# checking for binary reader end of file

I was searching for a way to check whether I've reached the end of a file for my binary reader …

c# binaryfiles binaryreader
What does \x00 mean in binary file?

Once I asked a guy "what is the difference between ASCII and Binary files?" And he said "Binary files always …

file binary ascii binaryfiles
How to check if the file is a binary file and read all the files which are not?

How can I know if a file is a binary file? For example, compiled c file. I want to read …

shell unix binaryfiles
How does Git deal with binary files?

Do I have to do something to tell Git whether some files are binary (like in Subversion)? Or, can Git …

git binaryfiles