programing tip

Python을 사용하여 디렉토리 내용을 디렉토리에 복사

itbloger 2020. 12. 8. 07:49
반응형

Python을 사용하여 디렉토리 내용을 디렉토리에 복사


파일과 하위 디렉토리가있는 / a / b / c 디렉토리가 있습니다. / x / y / z 디렉토리의 / a / b / c / *를 복사해야합니다. 어떤 파이썬 메서드를 사용할 수 있습니까?

나는 시도 shutil.copytree("a/b/c", "/x/y/z")했지만 파이썬은 / x / y / z를 만들고 error "Directory exists".


이 코드가 작동하는 것을 발견했습니다.

from distutils.dir_util import copy_tree

# copy subdirectory example
fromDirectory = "/a/b/c"
toDirectory = "/x/y/z"

copy_tree(fromDirectory, toDirectory)

참고:


from subprocess import call

def cp_dir(source, target):
    call(['cp', '-a', source, target]) # Linux

cp_dir('/a/b/c/', '/x/y/z/')

그것은 나를 위해 작동합니다. 기본적으로 쉘 명령 cp를 실행 합니다.


glob2를 사용하여 모든 경로를 재귀 적으로 수집 (** 하위 폴더 와일드 카드 사용) 한 다음 shutil.copyfile을 사용하여 경로를 저장할 수도 있습니다.

glob2 링크 : https://code.activestate.com/pypm/glob2/


python libs는이 함수에서 사용되지 않습니다. 올바르게 작동하는 작업을 수행했습니다.

import os
import shutil

def copydirectorykut(src, dst):
    os.chdir(dst)
    list=os.listdir(src)
    nom= src+'.txt'
    fitx= open(nom, 'w')

    for item in list:
        fitx.write("%s\n" % item)

    fitx.close()

    f = open(nom,'r')
    for line in f.readlines():
        if "." in line:
            shutil.copy(src+'/'+line[:-1],dst+'/'+line[:-1])
        else:
            if not os.path.exists(dst+'/'+line[:-1]):
                os.makedirs(dst+'/'+line[:-1])
                copydirectorykut(src+'/'+line[:-1],dst+'/'+line[:-1])
            copydirectorykut(src+'/'+line[:-1],dst+'/'+line[:-1])
    f.close()
    os.remove(nom)
    os.chdir('..')

참고 URL : https://stackoverflow.com/questions/15034151/copy-directory-contents-into-a-directory-with-python

반응형