Dec-18-2021, 11:22 AM
I am trying to write a python script that will use a regex to compare the file name that is present in the input folder with the output folder and if it matches, we, will copy that file from that input folder to another output folder.
Remember, we are comparing the filename that is present in the input folder name with the output folder name.
For Example:
Input folder: The filename looks like this "A10620.csv"
Output folder 1: There is one folder with the name "A10620_RD19CAR2000" besides the other folder name.
In output folder 1, I need to search the folder with that filename(See first 6 characters only), If they match, then we copy the files.
I need to search for that filename in two folder locations(Output folder 1 & Outputfolder2), If the folder does not found in location 2. Then we dumps the files in the "Files not found" folder at location 3.
Please see attached picture to get an idea of how the folder structure looks.
Here is my python script.
Problems:
In the input folder there are multiple files, I am having a difficulty in make a logic how to get the filename for 1 file at a time and search in different folder location. Then go for second file name and search in different folders and so on...
Is there any better way to write this code?
Attached python code and folder structure here
Remember, we are comparing the filename that is present in the input folder name with the output folder name.
For Example:
Input folder: The filename looks like this "A10620.csv"
Output folder 1: There is one folder with the name "A10620_RD19CAR2000" besides the other folder name.
In output folder 1, I need to search the folder with that filename(See first 6 characters only), If they match, then we copy the files.
I need to search for that filename in two folder locations(Output folder 1 & Outputfolder2), If the folder does not found in location 2. Then we dumps the files in the "Files not found" folder at location 3.
Please see attached picture to get an idea of how the folder structure looks.
Here is my python script.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
import os import re import shutil # Traverse each file sourcedir = "C:\\Users\\ShantanuGupta\\Desktop\\OzSc1\\InputFolder" # Search for folder in Location 1 destinationdir1 = r "C:\Users\ShantanuGupta\Desktop\OzSc1\OutputFolder1" # Search for folder in Location 2 destinationdir2 = "C:\\Users\\ShantanuGupta\\Desktop\\OzSc1\\OutputFolder2" # Put files in folder "Folder Not Found" destinationdir3 = "C:\\Users\\ShantanuGupta\\Desktop\\OzSc1\\OutputFolder3\\FoldersThatCouldNotBeFound" regex = re. compile (r '^A\d{5}' , re.IGNORECASE) #Checking only first six characters count = 0 for files in os.listdir(sourcedir): # looping over different files if regex.match(files): print (files) found = False # Search for a folder in Location 1 for folderName in os.listdir(destinationdir1): if regex.match(folderName): print (folderName) # Copy the files from the input folder to output folder shutil.copy(sourcedir + '/' + files, destinationdir1 + '//' + folderName) found = True break if not found: print ( 'folder not found in Location1' ) count = 1 # Search for a folder in Location 2 for folderName in os.listdir(destinationdir2): if regex.match(folderName): #print(folderName) # Copy the files from the input folder to output folder shutil.copy(sourcedir + '/' + files, destinationdir1 + '/' + folderName + '/' + files) found = True break if not found: print ( 'folder not found in Location2' ) count = 2 # Folder Not Found if not found: print ( 'copyingfilesinfoldernotfound' ) # Copy the files from the input folder to folder not found shutil.copy(sourcedir + '/' + files, destinationdir3 + '/' + files) |
In the input folder there are multiple files, I am having a difficulty in make a logic how to get the filename for 1 file at a time and search in different folder location. Then go for second file name and search in different folders and so on...
Is there any better way to write this code?
Attached python code and folder structure here
Attached Files