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.

Locking binary files using git version control system

For one and a half years, I have been keeping my eyes on the git community in hopes of making …

git version-control binaryfiles dvcs
Encode / Decode .EXE into Base64

I have a .NET exe file that I'd like to encode into a Base-64 string, and then at a later …

powershell base64 encode binaryfiles
How do I distinguish between 'binary' and 'text' files?

Informally, most of us understand that there are 'binary' files (object files, images, movies, executables, proprietary document formats, etc) and …

unix language-agnostic ascii binaryfiles file-format
How to create binary file using Bash?

How can I create a binary file with consequent binary values in bash? like: $ hexdump testfile 0000000 0100 0302 0504 0706 0908 0b0a 0d0c 0…

bash binaryfiles hexdump
Reading binary istream byte by byte

I was attempting to read a binary file byte by byte using an ifstream. I've used istream methods like get() …

c++ binaryfiles istream
Mysql byte array storage

I have a byte array created in Java. It represents content of some file. I don't know exactly the maximum …

java mysql jdbc bytearray binaryfiles
Getting binary content in Node.js using request

I was trying to GET a binary data using request, and had something like: var requestSettings = { method: 'GET', url: url, }; …

javascript node.js request binaryfiles requestjs
Unexpected "padding" in a Fortran unformatted file

I don't understand the format of unformatted files in Fortran. For example: open (3,file=filename,form="unformatted",access="sequential") write(3) …

fortran binaryfiles binary-data
Read binary file, save in buffer, print out content of buffer

I have a big problem that need's to be solved before I can continue with my program. I have to …

c malloc buffer binaryfiles fread
How to parse into base64 string the binary image from response?

I want to parse the requested image from my REST API into base64 string. Firstly... I thought, it would be …

javascript image base64 binaryfiles type-conversion