Table of Contents
This guide covers rename ()() function in c with practical context and easy-to-follow details. Use it to understand the subject and apply the information confidently.
Declare Rename ()() Function in C
Below is the declaration for rename () function in C:
int rename ( const char * old_filename , const char * new_filename )
Parameters
Old_filename - This is the string containing the file name to be renamed and / or moved.
New_filename - This is the string containing the new name for the file.
Returns the value
If successful, the function returns 0. If there is an error, the function returns -1 and errno is set appropriately.
For example
The following program C illustrates how to use the rename () function in C:
#include int main () { int ret ; char oldname [] = "baitapc.txt" ; char newname [] = "baitapc1.txt" ; ret = rename ( oldname , newname ); if ( ret == 0 ) { printf ( "Doi ten file thanh cong !!!" ); } else { printf ( "Error: khong the doi ten file" ); } return ( 0 ); }
Suppose we have baitapc. Txt with some content. We are preparing to delete this file by using the above program. Compile and run the above program to create the following message and the file will be renamed to baitapc1. Txt.
According to Tutorialspoint
Previous post: remove () function in C
Next lesson: The rewind () function in C
FAQ
What should I check before following these steps?
Confirm device and software compatibility, save important data, and make sure you have the required permissions, files, and account access.
Why might the process not work?
Common causes include outdated software, missing permissions, incompatible hardware, an unstable connection, or completing a step in the wrong order.
Can I undo the changes if necessary?
That depends on the tool or setting. Use built-in restore options when available, keep a backup, and record the original configuration first.
Reader Comments 0
Sign in with email or Google to join the discussion.