Reputation: 31
I want to create a .py
file in Python 3.6 that will copy entire local disk partition from my PC (partition D) to external hard drive(partition E). I only managed to copy folders with distutils copytree
command like this:
copy_tree(r"D:\\Myfolder", "E:\\SAVE\\Myfolder", update = True)
But I want the program to copy the entire partition with all folders subfolders and files.
Any help?
Upvotes: 2
Views: 981