일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Laravel
- Container
- format
- docker
- TORCH
- Linux
- list
- git
- enV
- Flask
- Package
- pandas
- Paper
- Converting
- Mac
- CUDA
- AI
- judge
- PostgreSQL
- LLM
- Windows
- Python
- file
- Database
- KAKAO
- pytorch
- DB
- GitLab
- evaluation
- numpy
Archives
- Today
- Total
목록directory (2)
Daily Develope
[Laravel] Directory 구조 정리 (version 9.x)
ㅇ App App. 실행에 필요한 핵심 코드 정의 ㅇ Bootstrap - 부트스트랩 프레임워크 - 일반적으로는 해당 경로의 파일을 수정할 필요가 없음 ㅇ Config - 환경설정 파일 - 상세 설명 (링크 : [Develope/Web] - [Laravel] Configuration 환경설정 정리 ) ㅇ Database - DB 관련 기능 모음 (마이그레이션, 팩토리 모델, seeds) ㅇ Lang - App.의 모든 언어 관련 파일 모음 ㅇ Public - 모든 App. 요청에 대해 진입점인 index.php 파일 정의 - Image, JavaScript, CSS 파일 저장 (공개 가능한 파일) ㅇ Resources - Views 정의 - CSS, JavaScript 저장 (컴파일 불필요한 파일) ㅇ ..
Develope/Web
2022. 4. 22. 23:27
[Python] 폴더 및 파일 탐색
ㅇ 폴더 및 파일 탐색 - 예) target_dir 에서 png, jpg 파일 출력 (non-recursion) target_dir = f'{os.getcwd()}/sample' for root, dirs, files in os.walk(target_dir): for file in files: if file.endswith(('.png', 'jpg')): print(file) ㅇ 파일 존재 확인 import pathlib if pathlib.Path('myfile.txt').exists(): print("exists")
Develope/Python
2022. 4. 6. 09:22