728x90
반응형
from glob import glob
import os
dir_lst = os.listdir("./outputs")
for dirs in dir_lst:
input_files = "./outputs/%s/*"%dirs
for dir_n in glob(input_files):
path = dir_n+"/json/"
if len(os.listdir(path))==0:
print("No_Json:%s"%path)
else:
continue
멀티프로세싱 프로그램 구동 중 특정 파일이 미생성되는 경우가 발생.
해당 파일의 존재유무를 파악하기 위한 간단한 python 코드
728x90
반응형
'사소한 Tip . 오류 해결법 > python' 카테고리의 다른 글
[python] 좌표값 정렬하기 (0) | 2022.04.14 |
---|---|
[python] list 중복 제거(순서 유지(OrderedDict, Dict), 순서 무관(set)) (0) | 2022.03.30 |
[python] 인터넷 크롤링(지마켓 상품명, 가격) / Python Crawling product name, price from online shopping mall (0) | 2022.03.15 |
[python/pytorch] Model GPU 메모리 사용량 체크 (0) | 2022.03.11 |
[python, layout-parser] pdf에서 정보 뽑기/ Extracting information from PDF file (0) | 2022.01.11 |