일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- CSS Fraud Score
- 주피터노트북 테마 변경
- ORACLE SQL NVL
- 딥러닝 제대로 시작하기
- SQL NVL
- 파이썬 이미지 라벨 저장
- jupyter notebook PDF
- python pandas
- 리눅스 저장 용량 확인
- 회수모형
- Cudnn 버전 확인
- ORACLE 상위 행 추출
- 파이썬 이미지 리스트 변환
- 신용평가 Fraud
- linux 폴더 크기 확인
- linux 폴더 용량 확인
- 행동평점
- 파이썬 테마
- ORACLE NULL값 처리
- SQL NULL값 처리
- ORACLE 상위 N개 추출
- python image list
- 신용평가 부정사용 평점
- 주식 데이터 수집
- jupyter notebook 테마 변경
- 파이썬 이미지 불러오기
- 신청평점
- 딥러닝
- python image load
- Python Numpy
Archives
- Today
- Total
koos808
파이썬 폴더 없으면 생성하기, 코드 시작 시간으로 폴더 생성하기 os.path.exists(), time.localtime() 본문
Python
파이썬 폴더 없으면 생성하기, 코드 시작 시간으로 폴더 생성하기 os.path.exists(), time.localtime()
koos808 2021. 4. 11. 21:59728x90
반응형
# 폴더 없으면 생성하기
1. 기본 코드
import os
if not os.path.exists(model_object_file_path):
os.makedirs(model_object_file_path)
2. 응용 : 추가로 weight와 output path 시간단위로 폴더만들어서 저장하기
# weight, output images path 설정 및 folder 생성
import os
import time
output_save_folder_path = os.getcwd() + '/detect_output/'
output_path = os.path.join(output_save_folder_path, time.strftime('%Y%m%d_%H_%M', time.localtime(time.time())))
weight_save_folder_path = os.getcwd() + '/detect_weights/'
weight_path = os.path.join(weight_save_folder_path, time.strftime('%Y%m%d_%H_%M', time.localtime(time.time())))
if not os.path.exists(output_save_folder_path):
os.mkdir(output_save_folder_path)
if not os.path.exists(output_path):
os.mkdir(output_path)
if not os.path.exists(weight_save_folder_path):
os.mkdir(weight_save_folder_path)
if not os.path.exists(weight_path):
os.mkdir(weight_path)
728x90
반응형
'Python' 카테고리의 다른 글
주피터노트북 아나콘다 프롬프트, 리눅스 가상환경 관련 코드(간단) (0) | 2021.04.11 |
---|---|
주피터노트북에서 파이썬 버전확인하는 방법 (0) | 2021.04.11 |
파이썬 pandas to_csv 함수로 csv 파일 저장 시 한글깨짐 해결방법 및 파일 저장 코드 (0) | 2021.04.11 |
Python 크롤링 셀레니움(Selenium)으로 화면 스크린샷(Screenshot)하기 (0) | 2021.04.11 |
Python 리스트에서 확장자 제거하는 여러가지 방법 (0) | 2021.02.05 |
Comments