Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created April 8, 2020 17:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/adf0bb65424c1ae18fb95cba2852ef06 to your computer and use it in GitHub Desktop.
Save parzibyte/adf0bb65424c1ae18fb95cba2852ef06 to your computer and use it in GitHub Desktop.
# parzibyte.me/blog
from distutils.dir_util import copy_tree
DIRECTORIO_ORIGEN = "origen"
DIRECTORIO_DESTINO = "destino"
print("Copiando...")
copy_tree(DIRECTORIO_ORIGEN, DIRECTORIO_DESTINO)
print("Copiado")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment