Copying folder and contents using python -


i trying work out how copy folders , contents 1 drive using python, use of user input determining drives copy , from?

from have looked @ shutil.copytree need use struggling how link in user input?

shutil has many methods can use. 1 of is:

from shutil import copyfile  copyfile(src, dst) 

documentation: https://docs.python.org/2/library/shutil.html


Comments