What's a binary file and how do I create one? - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T18:03:07Zhttp://stackoverflow.com/feeds/question/979816http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/979816/whats-a-binary-file-and-how-do-i-create-one1What's a binary file and how do I create one?confucious2009-06-11T07:39:01Z2009-06-11T09:40:50Z
<p>I would like to create a binary file representing an integer. I think the file should be 4 bytes. I use linux. How to do that?
Another question: How do I assign the content of that file to an integer in C?</p>
http://stackoverflow.com/questions/979816/whats-a-binary-file-and-how-do-i-create-one/979830#9798301Answer by Gishu for What's a binary file and how do I create one?Gishu2009-06-11T07:43:27Z2009-06-11T07:51:01Z<p>Open the file for binary read/write. fopen takes a <code>b</code> switch for file access mode parameter - <a href="http://www.cplusplus.com/reference/clibrary/cstdio/fopen/" rel="nofollow">see here</a></p>
<p>See the <a href="http://en.wikipedia.org/wiki/Fopen" rel="nofollow">fopen page in Wikipedia</a> for the difference between text and binary files as well as a code sample for writing data to a binary file</p>
http://stackoverflow.com/questions/979816/whats-a-binary-file-and-how-do-i-create-one/979838#9798388Answer by paxdiablo for What's a binary file and how do I create one?paxdiablo2009-06-11T07:46:09Z2009-06-11T09:40:50Z<p>In standard C, <code>fopen()</code> allows the mode <code>"wb"</code> to write (and <code>"rb"</code> to read) in binary mode, thus:</p>
<pre><code>#include <stdio.h>
int main() {
/* Create the file */
int x = 1;
FILE *fh = fopen ("file.bin", "wb");
if (fh != NULL) {
fwrite (&x, sizeof (x), 1, fh);
fclose (fh);
}
/* Read the file back in */
x = 7;
fh = fopen ("file.bin", "rb");
if (fh != NULL) {
fread (&x, sizeof (x), 1, fh);
fclose (fh);
}
/* Check that it worked */
printf ("Value is: %d\n", x);
return 0;
}
</code></pre>
<p>This outputs:</p>
<pre><code>Value is: 1
</code></pre>
http://stackoverflow.com/questions/979816/whats-a-binary-file-and-how-do-i-create-one/979847#9798471Answer by qrdl for What's a binary file and how do I create one?qrdl2009-06-11T07:47:52Z2009-06-11T07:47:52Z<p>See <code>man</code> for syscalls <code>open</code>, <code>write</code> and <code>read</code>.</p>
http://stackoverflow.com/questions/979816/whats-a-binary-file-and-how-do-i-create-one/979858#9798582Answer by Neil Butterworth for What's a binary file and how do I create one?Neil Butterworth2009-06-11T07:50:17Z2009-06-11T07:50:17Z<p>From the operating system's point of view, all files are binary files. C (and C++) provide a special "text mode" that does stuff like expanding newline characters to newline/carriage-return pairs (on Windows), but the OS doesn't know about this.</p>
<p>In a C program, to create a file without this special treatment, use the "b" flag of fopen():</p>
<pre><code>FILE * f = fopen("somefile", "wb" );
</code></pre>