2) Folders to copy/Move in Windows with shutil package in windows

import os, shutil

src = "C:\\Folder\\"
dst = "\\\\servername\\Results\\"
shutil.copy(src, dst)
shutil.move(src, dst)



Comments

Popular posts from this blog