Notice
Recent Posts
Recent Comments
Link
«   2025/04   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
Archives
Today
Total
관리 메뉴

게임 프로그래밍

[Python] 폴더 만들기, 파일복사, 파일 옮기기 본문

프로그래밍

[Python] 폴더 만들기, 파일복사, 파일 옮기기

Junwe 2020. 3. 7. 04:43
1
2
if not os.path.isdir("path"):
    os.makedirs("path")
cs

import os를 하신후 폴더가 만들어져 있는지 확인한다음 os.makedirs를 이용하여 폴더를 만들 수 있습니다.

1
2
3
4
shutil.copy2("원본 경로","대상 경로")
 
shutil.move("원본 경로","대상 경로")
 
cs

파일 복사와 이동에 경우에는 import shutil를 하신후 

shutil.copy2, shutil.move를 사용하면 됩니다.

Comments