Posts by ryonagana • 11 points
1 post
-
1
votes2
answers1248
viewsA: Handling java/python/c directories
So that all this if the shutil solves your problem import shutil shutil.copytree(diretorioA, diretorioB, symlinks=False, ignore=None) does exact and recursive copying of a directory. I’ve tried this…