rename

 

書式
int rename(const char *old,const char *new);

機能
ポインタoldの指す文字列が名のファイルを、ポインタnewの指す文字列に改名する。

戻り値
成功した時は0、失敗した時は0以外。

ヘッダーファイル
stdio.h

 

使用例

char *old = "error.c";
char *new = "nice.c";
rename(old,new);