Renaming multiple files in a directory using Python Renaming multiple files in a directory using Python python python

Renaming multiple files in a directory using Python


You are not giving the whole path while renaming, do it like this:

import ospath = '/Users/myName/Desktop/directory'files = os.listdir(path)for index, file in enumerate(files):    os.rename(os.path.join(path, file), os.path.join(path, ''.join([str(index), '.jpg'])))

Edit: Thanks to tavo, The first solution would move the file to the current directory, fixed that.


You have to make this path as a current working directory first. simple enough.rest of the code has no errors.

to make it current working directory:

os.chdir(path)


import osfrom os import pathimport shutilSource_Path = 'E:\Binayak\deep_learning\Datasets\Class_2'Destination = 'E:\Binayak\deep_learning\Datasets\Class_2_Dest'#dst_folder = os.mkdir(Destination)def main():    for count, filename in enumerate(os.listdir(Source_Path)):        dst =  "Class_2_" + str(count) + ".jpg"        # rename all the files        os.rename(os.path.join(Source_Path, filename),  os.path.join(Destination, dst))# Driver Codeif __name__ == '__main__':    main()