This section illustrates you to rename a file in C. You can see in the given example that we want to replace the name of the text file MYFILE.txt with HELLO.txt. For this, we have used the library function rename() which renames the file MYFILE.txt to HELLO.txt. In case if the file some how, not be renamed, the function perror() prints the error message.
Here is the code:
RENAMEFI.C
#include <stdio.h>
|
When you run the above example, the file MYFILE.txt is renamed to HELLO.txt. File MYFILE.txt should be placed where your RENAMEFI.C File is present.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: C file rename View All Comments
Post your Comment