Q:

C program to rename a file using the system() function

0

C program to rename a file using the system() function

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Read the old and new filename, and then rename the given file using the system() function by specifying the "mv" command.

The system() function is a library function of <stdlib.h> or <cstdlib> header file which is used to execute the commands that can be executed in the command processor or the terminal of the operating system, and finally returns the command after it has been completed.

Syntax:

int system(const char *string);

The argument string is the command to be executed.

To rename a file, create (form) mv command with old and new file names and pass it into the system() function.

Program:

The source code to rename a file using the system() function is given below. The given program is compiled and executed using GCC compile on UBUNTU 18.04 OS successfully.

// C program to rename a file
// using the system() function.

#include <stdio.h>
#include <stdlib.h>

int main()
{
    char oldName[16];
    char newName[16];
    char cmd[64];

    int ret = 0;

    printf("Enter old filename: ");
    scanf("%s", oldName);

    printf("Enter new filename: ");
    scanf("%s", newName);

    sprintf(cmd, "mv %s %s", oldName, newName);
    ret = system(cmd);

    if (ret == 0)
        printf("File renamed successfully\n");
    else
        printf("Unable to rename file\n");

    return 0;
}

Output:

Enter old filename: file.txt
Enter new filename: newfile.txt
File renamed successfully

Explanation:

Here, we created two character arrays oldNamenewName. Then we read the old and new names of files from the user. Then we renamed the given file using the system() function by specifying the "mv" command and printed the appropriate message on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

File Handling Examples Programs in C language

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C program to change the permissions of file using ... >>
<< C program to rename a file using the rename() func...