Python Forum
mass rename files in folders
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
mass rename files in folders
#4
import os
from sys import argv

path = argv[1] # take the directory from the command line.
for root, dirs, files in os.walk(path):
    for file in files:
        dir = os.path.split(root)[-1]
        os.rename(file, f"{dir}-{file}")
os.walk starts from the 'path' and for each directory from the three returns a tuple:
{the_current_directory,
 a_list_of_all_directories_in_the_current_directory,
 a_list_of_all_files_in_the_current_directory)
So, you just pass the path to the os.walk and for each iteration, you change the names of the 'files' from the tuple (root, dirs, files). 'files' is a list of all files in 'root', which is the current directory during the scan.
"As they say in Mexico 'dosvidaniya'. That makes two vidaniyas."
https://freedns.afraid.org
Reply


Messages In This Thread
mass rename files in folders - by kerzol81 - Dec-28-2017, 08:28 PM
RE: mass rename files in folders - by wavic - Dec-28-2017, 08:40 PM
RE: mass rename files in folders - by kerzol81 - Dec-28-2017, 09:01 PM
RE: mass rename files in folders - by wavic - Dec-29-2017, 05:55 AM
RE: mass rename files in folders - by kerzol81 - Dec-29-2017, 08:12 AM
RE: mass rename files in folders - by wavic - Dec-29-2017, 09:08 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Using zipfile module - finding folders not files darter1010 2 340 Apr-06-2024, 07:22 AM
Last Post: Pedroski55
  Rename files in a folder named using windows explorer hitoxman 3 798 Aug-02-2023, 04:08 PM
Last Post: deanhystad
  Rename all files in a folder hitoxman 9 1,609 Jun-30-2023, 12:19 AM
Last Post: Pedroski55
  Create new folders and copy files cocobolli 3 1,553 Mar-22-2023, 10:23 AM
Last Post: Gribouillis
  Copy only hidden files and folders with rsync Cannondale 2 1,074 Mar-04-2023, 02:48 PM
Last Post: Cannondale
  How to do a mass replace within a CSV file? cubangt 9 5,520 May-09-2022, 06:52 PM
Last Post: snippsat
  Rename part of filename in multiple files atomxkai 7 7,479 Feb-18-2022, 10:03 PM
Last Post: atomxkai
  Rename Files based on XML file klturi421 3 2,258 Oct-22-2021, 07:37 PM
Last Post: klturi421
  Moving files to Folders giddyhead 13 9,330 Mar-07-2021, 02:50 AM
Last Post: giddyhead
  Rename Multiple files in directory to remove special characters nyawadasi 9 6,544 Feb-16-2021, 09:49 PM
Last Post: BashBedlam

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020