“Kopiuj Struktura dyrektora Python” Kod odpowiedzi

Python Copy Dir

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

Kopiuj Struktura dyrektora 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

Odpowiedzi podobne do “Kopiuj Struktura dyrektora Python”

Pytania podobne do “Kopiuj Struktura dyrektora Python”

Więcej pokrewnych odpowiedzi na “Kopiuj Struktura dyrektora Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu