What's a binary file and how do I create one? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T18:03:07Z http://stackoverflow.com/feeds/question/979816 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/979816/whats-a-binary-file-and-how-do-i-create-one 1 What's a binary file and how do I create one? confucious 2009-06-11T07:39:01Z 2009-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#979830 1 Answer by Gishu for What's a binary file and how do I create one? Gishu 2009-06-11T07:43:27Z 2009-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#979838 8 Answer by paxdiablo for What's a binary file and how do I create one? paxdiablo 2009-06-11T07:46:09Z 2009-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 &lt;stdio.h&gt; int main() { /* Create the file */ int x = 1; FILE *fh = fopen ("file.bin", "wb"); if (fh != NULL) { fwrite (&amp;x, sizeof (x), 1, fh); fclose (fh); } /* Read the file back in */ x = 7; fh = fopen ("file.bin", "rb"); if (fh != NULL) { fread (&amp;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#979847 1 Answer by qrdl for What's a binary file and how do I create one? qrdl 2009-06-11T07:47:52Z 2009-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#979858 2 Answer by Neil Butterworth for What's a binary file and how do I create one? Neil Butterworth 2009-06-11T07:50:17Z 2009-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>