File and Path Operations
int _utime64(const char *filename, struct __utimbuf64 *times);
int _wutime64(const wchar_t *filename, struct __utimbuf64 *times);
int _tutime64(const TCHAR *filename, struct __utimbuf64 *times);
Internationalization (I18n) Function Overview
These functions set the modification time for the file named filename . If times is a NULL pointer, the modification time is set to the current local time.
_wutime64 is the wide-character version of the function; its parameters are wide characters.
_tutime64 is the Windows-only Generic version of the function; with the _MBCS or _UNICODE compiler flags determining its mapping to either _utime64 or _wutime64 .
I18n Issues
Use the appropriate version of the function as required for internationalization support, noting the following:
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
|