“Структура директора копии Python” Ответ

Python Copy Dir

from shutil import copytree
shutil.copytree("sourcedir", "destination")
mountainpython

Структура директора копии Python

import shutil

def copytree(src, dst, symlinks=False, ignore=None):
    if not os.path.exists(dst):
        os.makedirs(dst)
    for item in os.listdir(src):
        s = os.path.join(src, item)
        d = os.path.join(dst, item)
        if os.path.isdir(s):
            copytree(s, d, symlinks, ignore)
        else:
            if not os.path.exists(d):
                shutil.copy2(s, d)
                
copytree(source, destination)
Tense Tarantula

Ответы похожие на “Структура директора копии Python”

Вопросы похожие на “Структура директора копии Python”

Больше похожих ответов на “Структура директора копии Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования