Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Arduino pin map
- 데이터베이스
- Arduino
- 아두이노 프로미니
- Virtual Box
- 아두이노 핀
- Codility
- MySQL
- 코딜리티
- Arduino pin
- html input
- database
- 아두이노 wifi
- 웹 프로그래밍
- vm
- 아두이노 와이파이
- 알고리즘
- wifi멀티탭
- Mysql c API
- 아두이노 핀맵
- web
- Raspberry Pi
- 아두이노 핀 맵
- 라즈베리파이
- mysql api
- 아두이노
- 아두이노 pro mini
- mysql c
- ubuntu
- HTML
Archives
- Today
- Total
offfff
파이썬 특정 경로에서 같은 이름을 가진 파일 삭제 본문
두 폴더에서 파일의 확장자는 hwp, pdf로 다르지만
확장자 이외 파일들의 이름이 같은 경우 파일은 삭제해주는
파이썬 코드를 프로그래밍 한 것입니다.
import os
folder_a = "C:/Users/David/Desktop/testA"
folder_b = "C:/Users/David/Desktop/testB"
# folder_a에 있는 파일명을 순회합니다.
for file in os.listdir(folder_a):
# 파일의 확장자가 PDF인 경우에만 진행합니다.
if file.endswith(".pdf"):
# 파일의 이름과 확장자 제외한 부분을 추출합니다.
file_name = file[:-4]
# HWP 파일의 경로를 생성합니다.
file_path = os.path.join(folder_b, file_name + ".hwp")
# 파일이 존재하면 삭제합니다.
if os.path.exists(file_path):
os.remove(file_path)
참고자료 : https://blog.naver.com/molllab
'프로그래밍' 카테고리의 다른 글
파이썬 음성인식 모듈(STT) speech_recognition (0) | 2023.02.08 |
---|---|
[WiFi Plug DIY (3)] Remaking the plug (0) | 2018.01.18 |
[WiFi Plug DIY (2)] Plug disassembly (0) | 2018.01.18 |
[WiFi Plug DIY (1)] Preface (0) | 2018.01.18 |
[WiFi 멀티탭 제작기 (3)] 멀티탭 개조 (0) | 2018.01.18 |