rename
Syntax: #include <stdio.h> int rename( const char *oldfname, const char *newfname ); The function rename() changes the name of the file oldfname to newfname. The return value of rename() is zero upon success, non-zero on error. Related topics:
|