fopen deprecated warning - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T21:43:19Z http://stackoverflow.com/feeds/question/14386 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/14386/fopen-deprecated-warning 7 fopen deprecated warning Ashwin 2008-08-18T09:38:58Z 2008-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&gt;foo.cpp(5) : warning C4996: 'fopen' was declared deprecated 1&gt; c:\program files\microsoft visual studio 8\vc\include\stdio.h(234) : see declaration of 'fopen' 1&gt; 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#14387 13 Answer by Ashwin for fopen deprecated warning Ashwin 2008-08-18T09:39:16Z 2008-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 &lt;stdio.h&gt; </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#14506 3 Answer by John Sibly for fopen deprecated warning John Sibly 2008-08-18T12:18:13Z 2008-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#14561 1 Answer by Ashwin for fopen deprecated warning Ashwin 2008-08-18T13:13:14Z 2008-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#91698 2 Answer by Joseph Holsten for fopen deprecated warning Joseph Holsten 2008-09-18T11:15:58Z 2008-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#284698 5 Answer by tragomaskhalos for fopen deprecated warning tragomaskhalos 2008-11-12T17:34:49Z 2008-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>