|
Description
This example shows how
to rename a file using the rename
function , note this example does
not have any error checking.
Code
#include <stdio.h>
int main()
{
rename("d:/website.dat","d:/urls.dat");
return 0;
}
Information
tested using LCC Win
32
|