Python Forum
Attribute Error for Rename / Replace
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Attribute Error for Rename / Replace
#6
(Jan-07-2020, 08:22 AM)perfringo Wrote: Just playing with string .split method Smile . It assumes that needed part is between first and last underscore (as provided in example).

I'm not sure how to incorporate this into the code I already have - apologies I am very new to this. If I can get it working though, it looks like it might be a better solution then what I commented out above it.

import os, zipfile, string, re
from shutil import copyfile

###Parameters ###

dir_name = 'C:\\Users\\m88576\\Desktop\\UnzipDirectory' # Defines target directory
extension = ".zip" #Defines target extension (zip)
os.chdir(dir_name) # change working dir to target directory

###Rename Zip Files###

file_list = os.listdir(dir_name)

def rename_files(): #Obtain the file names from the folder
    for file_name in file_list: #Rename the files inside of the folder.
        #os.rename(file_name, file_name.translate(str.maketrans('','','0123456789_-'))) #Removes characters noted to the left
        f"{''.join(file_list.split('_', maxsplit=1)[1].rsplit('_', maxsplit=1)[0].split('_'))}.zip"
rename_files()
Error:
'list' object has no attribute 'split'
Reply


Messages In This Thread
Attribute Error for Rename / Replace - by warden89 - Jan-06-2020, 04:38 PM
RE: Attribute Error for Rename / Replace - by warden89 - Jan-07-2020, 04:53 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Error: audioio has no attribute 'AudioOut' netwrok 3 691 Oct-22-2023, 05:53 PM
Last Post: netwrok
  cx_oracle Error - AttributeError: 'function' object has no attribute 'cursor' birajdarmm 1 2,462 Apr-15-2023, 05:17 PM
Last Post: deanhystad
  Getting 'NoneType' object has no attribute 'find' error when WebScraping with BS Franky77 2 5,322 Aug-17-2021, 05:24 PM
Last Post: Franky77
  Attribute Error received not understood (Please Help) crocolicious 5 2,731 Jun-19-2021, 08:45 PM
Last Post: crocolicious
  error in scapy attribute 'haslayer' evilcode1 5 6,606 Mar-02-2021, 11:19 AM
Last Post: evilcode1
  attribute error instead of correct output MaartenRo 2 2,222 Aug-28-2020, 10:22 AM
Last Post: Larz60+
  attribute error stumped on how to fix it. hank4eva 7 4,839 Aug-11-2020, 04:47 AM
Last Post: hank4eva
  Attribute Error - trying to create a pixel array out of PNG files The_Sarco 1 2,035 Apr-29-2020, 07:10 PM
Last Post: deanhystad
  Reading DBF files from Amazon s3 throwing error - 'int' object has no attribute 'isa abeesm 1 2,950 Sep-22-2019, 05:49 PM
Last Post: ndc85430
  Attribute Error Adit99 5 3,707 Aug-18-2019, 11:44 AM
Last Post: ichabod801

Forum Jump:

User Panel Messages

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