_wrename()

Changes the name of a file.

  #include <stdio.h>
  
  int rename(const char *old, const wchar_t *new);    
Parameter

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.

Remarks

The wrename() function implements a wide character variation of rename().