| File and Path Function FILE *_fsopen(const char *filename, const char *mode, int shflag);  FILE *_wfsopen(const wchar_t *filename, const wchar_t *mode, int shflag);  FILE *_tfsopen( const TCHAR *filename, const TCHAR *mode, int shflag); Internationalization (I18n) Function OverviewThe _fsopenfunction opens the file specified byfilenameas a stream and prepares the file for subsequent shared reading or writing, as defined by themodeandshflagarguments.
If successful, the stream object is returned; otherwiseNULLis
returned to indicate an error. _wsopenis the wide version of the function; its parameters are wide character strings.
 _tfsopenis the Generic version of the function; with the_MBCSor_UNICODEcompiler flags determining its mapping to either_fsopenor_wfsopen.
 See the MSDN Library for
more information on the type of access permitted (mode) and the type of sharing allowed (shflag). I18n IssuesUse the appropriate version of the function as required for internationalization support. See Pathnames for a discussion of path and filename considerations in 
an internationalized application, and File I/O, which addresses reading and
writing non-ASCII text data files. Recommended Replacements* 
*If you're already using the recommended function, see I18n Issues for other reasons why Globalyzer is detecting the function. File and Path Functions    
 |