콘솔워크

파일 제거 본문

프로그래밍/python

파일 제거

이휘재123 2023. 2. 3. 20:12
반응형
file_path = '경로'
if os.path.isfile(file_path):
	os.remove(file_path)

 

반응형