I have two directories: path/to/folder and path/to/otherfolder which both have several sub-directories inside them: path/to/folder/TEST1, path/to/folder/TEST2, path/to/otherfolder/TEST1, path/to/otherfolder/TEST2, etc.
I'm getting all the subdirectories in the root folder using folder_path = glob.glob('path/to/folder/*')
I then loop over each sub-directory to get all the files in them:
for folder in folder_path:
file_path = glob.glob(folder + '\*')
for files in file_path:
new_path = files.replace('folder', 'otherfolder')
with open(files, r) as f:
with open(new_path, 'wb') as wf:
do stuff
This isn't working though as no files are being written to. I thought about simply changing this line to files.replace('\\folder\\', '\\otherfolder\\') but I don't think this will work.
I'd like to use Python's re library if anyone has any ideas?
It looks like the problem is the glob pattern. Instead of:
can you try
?
This will require you to
import osat the top of your file.There is also a syntax error here:
Should be: