I have a folder which contains around 500 files.
I have a problem where I am creating folders based on those 500 file names. For e.g., if I have files such as A.txt, B.txt, etc first I want to create folders named 'A' and 'B' and then push 'A.txt' file into a folder named 'A' and 'B.txt' named file into folder named 'B', which I have just created. SO basically two tasks first is to create the folders based on the file names and then push the corresponding files into the named folders.
However, I'm getting stuck in two places, first, the folders name are getting created as 'A.txt', 'B.txt' etc instead on 'A' or 'B' as I am taking the filename itself and second is to place the files into corresponding folders.
I have tried below code:
import os, shutil, glob
import pandas as pd
def i2f(directory):
for filename in os.listdir(directory):
foldername = filename
folder_loc = "all_files\user\txt-images"
crfolder(os.path.join(folder_loc, foldername))
'''
crfolder is function that creates a folder
'''
src_dir = r"all_files\user\txt-images\src_folder"
dstn_dir = r"all_files\user\txt-images\trgt_folder"
for file in glob.glob("\\*.txt"):
re.compile(r"[^_.A-Z]")
shutil.copy2(file, dstn_dir)
def crfolder():
import os
try:
if not os.path.exists(folder_loc):
os.makedirs(folder_loc)
except OSError:
print ('''Can't create directory! ''' + folder_loc)
Any help is appreciated to tell me where I am getting it wrong.