PY0019 Python Rename File and Directory using os.rename()
Posted by Superadmin on November 10 2018 18:06:47

In Python, rename() method is used to rename a file or directory. It takes two arguments. Let's check the syntax.

Syntax

This is the syntax for os.rename() method

os.rename(src, dst)

Parameters

src: Source is the name of the file or directory. It should must already exist.

dst: Destination is the new name of the file or directory you want to change.

Example:

import os  
os.rename('guru99.txt','career.guru99.txt') 

Let's look at example in detail

You can rename the original file, we have changed the file name from "Guru99.txt" to "Career.guru99.txt."

Python OS Module, Shell Script Commands

Here is the complete code

import os
import shutil
from os import path

def main():
	# make a duplicate of an existing file
    if path.exists("guru99.txt"):
	# get the path to the file in the current directory
        src = path.realpath("guru99.txt");
		
	# rename the original file
        os.rename("career.guru99.txt","guru99.txt")
		
if __name__ == "__main__":
    main()