| File and Path Function int mkdir(const char *dirname);  int _mkdir(const char *dirname);  int _wmkdir(const wchar_t *dirname);  int _tmkdir(const TCHAR *dirname); Internationalization (I18n) Function OverviewThe mkdirand_mkdirfunctions create a new subdirectory. The functions return0if successful; else they return-1and set the global variableerrnowith
the error number. On Windows platforms, _wmkdiris the wide-character version of_mkdir; its argument is a wide-character string. There is no ANSI wide-character equivalent. _tmkdiris the Windows-only Generic version of the function; with the_MBCSor_UNICODEcompiler flags determining its mapping to either_mkdiror_wmkdir.
 I18n IssuesUse the appropriate version of the function as required for internationalization support. On ANSI UTF-16 platforms, use a conversion function to convert the 
wide-character string to a multibyte-character string and then call mkdir. See Pathnames for a discussion of path and filename considerations in 
an internationalized application. 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 
               
 |