Changes the name of a file.
#include <stdio.h> int rename(const char *old, const wchar_t *new);
old
A pointer to a wide-character string containing the old file name.
new
A pointer to a wide-character string containing the new file name.
The wrename() function implements a wide character variation of rename().