Описание тега copytree
Use this tag for questions relevant to the `copytree()` function, from the shutil module of Python.
Quoting the ref:
shutil.copytree(src, dst, symlinks=False, ignore=None)
Recursively copy an entire directory tree rooted at src. The destination directory, named by dst, must not already exist; it will be created as well as missing parent directories. Permissions and times of directories are copied with copystat(), individual files are copied using shutil.copy2().
copytree is used for questions that are using the shutil module of Python, and have to do with the act of copying an entire directory, with or without manipulating it (e.g. filtering it).