vote up -2 vote down star

I was just wondering how could i rename a file on unix platform using a c program without using the standard rename function.any ideas? rename a file in c

flag

76% accept rate
10  
Why do you not want to use the standard rename function? – Martin v. Löwis Oct 10 at 8:02

3 Answers

vote up 1 vote down check

The following is a somewhat ironic solution, that does not use the standard rename(2) system call by itself:

#include <stdlib.h>

if (system("mv file1 file2") != 0)
    perror("system");

It's an indirect usage of rename(2), this syscall is invoked by mv(1).

link|flag
Don't forget that 'mv' does considerably more than 'rename()' when the source and target locations are on different file systems. – Jonathan Leffler Oct 10 at 23:07
vote up 29 vote down

The historical way to rename a file is to use link(2) to create a new hardlink to the same file, then to use unlink(2) to remove the old name.

link|flag
vote up 1 vote down

You can use this:

int rename ( const char * oldname, const char * newname );

Example:

#include <stdio.h>
int main()
{
    if ( 0 == rename("old.txt", "new.txt") )
    {
    	printf ("Success!\n");
    }

    return 0;
}
link|flag
1  
"Without using the standard rename function"! – Thomas Padron-McCarthy Oct 10 at 14:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.