본문 바로가기
파이썬

파이썬 폴더의 내용을 삭제하는 방법은 무엇입니까?

by º기록 2021. 1. 7.
반응형

Python에서 로컬 폴더의 내용을 어떻게 삭제할 수 있습니까?

현재 프로젝트는 Windows 용이지만 * nix도보고 싶습니다.

 

해결 방법

 

import os, shutil
folder = '/path/to/folder'
for filename in os.listdir(folder):
    file_path = os.path.join(folder, filename)
    try:
        if os.path.isfile(file_path) or os.path.islink(file_path):
            os.unlink(file_path)
        elif os.path.isdir(file_path):
            shutil.rmtree(file_path)
    except Exception as e:
        print('Failed to delete %s. Reason: %s' % (file_path, e))

 

참조 페이지 https://stackoverflow.com/questions/185936

 

 

반응형

댓글