paste1 [Python] 특정 디렉토리 복사 붙여넣기 (Copy & Paste) 방법 shutil.copytree(target_path, destination_path) 예시 import shutil target_path = '/saranghaeyo/yeonyegajungye' destination_path = '/saranghaeyo/komawaryo' shutil.copytree(target_path, destination_path) # 붙여넣기 하고자 하는 디렉토리가 이미 존재하는 경우 (Python 3.8 이상부터 가능) shutil.copytree(target_path, destination_path, dirs_exist_ok=True) 출처 : https://stackoverflow.com/questions/1868714/how-do-i-copy-an-entire-dire.. 2022. 2. 9. 이전 1 다음 반응형