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
|
|
|||||
|
|
|
The following is a somewhat ironic solution, that does not use the standard
It's an indirect usage of |
||
|
|
|
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. |
||
|
|
|
|
You can use this:
Example:
|
||||
|
