fopen deprecated warning - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T21:43:19Zhttp://stackoverflow.com/feeds/question/14386http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/14386/fopen-deprecated-warning7fopen deprecated warningAshwin2008-08-18T09:38:58Z2008-11-12T17:34:49Z
<p>On <em>Visual Studio 2005 C++ compiler</em>, I get the following warning when my code uses the <strong>fopen</strong> and such calls.</p>
<pre><code>1>foo.cpp(5) : warning C4996: 'fopen' was declared deprecated
1> c:\program files\microsoft visual studio 8\vc\include\stdio.h(234) : see declaration of 'fopen'
1> Message: 'This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
</code></pre>
<p>How do I prevent this?</p>
http://stackoverflow.com/questions/14386/fopen-deprecated-warning/14387#1438713Answer by Ashwin for fopen deprecated warningAshwin2008-08-18T09:39:16Z2008-08-18T09:39:16Z<p>It looks like Microsoft has deprecated lots of calls which use buffers to improve code security. However, the solutions they're providing aren't portable. Anyway, if you aren't interested in using the secure version of their calls (like <strong>fopen_s</strong>), you need to place a definition of <strong>_CRT_SECURE_NO_DEPRECATE</strong> before your included header files. For example:</p>
<pre><code>#define _CRT_SECURE_NO_DEPRECATE
#include <stdio.h>
</code></pre>
<p>The preprocessor directive can also be added to your project settings to effect it on all the files under the project. To do this add <strong>_CRT_SECURE_NO_DEPRECATE</strong> to <em>Project Properties -> Configuration Properties -> C/C++ -> Preprocessor -> Preprocessor Definitions</em>.</p>
http://stackoverflow.com/questions/14386/fopen-deprecated-warning/14506#145063Answer by John Sibly for fopen deprecated warningJohn Sibly2008-08-18T12:18:13Z2008-08-18T12:18:13Z<p>Well you could add a:</p>
<pre><code>#pragma warning (disable : 4996)
</code></pre>
<p>before you use fopen, but have you considered using fopen_s as the warning suggests? It returns an error code allowing you to check the result of the function call. The problem with just disabling deprecated function warnings is that Microsoft may remove the function in question in a later version of the CRT, breaking your code.</p>
http://stackoverflow.com/questions/14386/fopen-deprecated-warning/14561#145611Answer by Ashwin for fopen deprecated warningAshwin2008-08-18T13:13:14Z2008-08-18T13:13:14Z<p>@John Sibly: Thanks for the informative comment. I could've used <strong>fopen_s</strong>, but since this came up with some code which I wanted to be as portable as possible, I don't prefer that solution. I find it difficult to believe that Microsoft will completely remove the standard library calls. They might make them pretty hard to use, but they will need to keep them around for old code.</p>
http://stackoverflow.com/questions/14386/fopen-deprecated-warning/91698#916982Answer by Joseph Holsten for fopen deprecated warningJoseph Holsten2008-09-18T11:15:58Z2008-09-18T11:15:58Z<p>Consider using a portability library like <a href="http://www.gtk.org/" rel="nofollow">glib</a> or the <a href="http://apr.apache.org/" rel="nofollow">apache portable runtime</a>. These usually provide safe, portable alternatives to calls like these. It's a good thing too, because these insecure calls are deprecated in most modern environments.</p>
http://stackoverflow.com/questions/14386/fopen-deprecated-warning/284698#2846985Answer by tragomaskhalos for fopen deprecated warningtragomaskhalos2008-11-12T17:34:49Z2008-11-12T17:34:49Z<p>This is just Microsoft being cheeky. "Deprecated" implies a language feature that may not be provided in future versions of the standard language / standard libraries, as decreed by the standards committee. It does not, or should not mean, "we, unilaterally, don't think you should use it", no matter how well-founded that advice is.</p>