I have a specific problem in python. Below is my folder structure.
dstfolder/slave1/slave
I want the contents of 'slave'
folder to be moved to 'slave1'
(parent folder). Once moved,
'slave'
folder should be deleted. shutil.move
seems to be not helping.
Please let me know how to do it ?
Example using the os and shutil modules:
from os.path import join
from os import listdir, rmdir
from shutil import move
root = 'dstfolder/slave1'
for filename in listdir(join(root, 'slave')):
move(join(root, 'slave', filename), join(root, filename))
rmdir(root)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With