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
- geopandas
- 데이터입수
- graph
- 좌표거리
- 이미지빌드
- python최단거리
- 도커
- Python
- 3d
- 동명이인찾기
- 지하철역좌표
- docker
- geojson
- 귀여운고래
- STL
- 패치분할
- GCN
- Set
- 3d데이터
- 그리드분할
- 컨테이너
- GIS
- MESH
- osmnx
- 파이썬
- pyvista
- GNN
- 도커 레이어
- 폴더조사
- 알고리즘
Archives
- Today
- Total
목록데이터입수 (1)
이것저것 기록
[python] 폴더/하위 폴더의 파일 목록 출력
1. 특정 형태의 파일 위치 출력 import os import pandas as pd import csv PATH = r'C:/Users/82107/Desktop/COMPAS_세종시/' file_ls = [] max_depth = 0 for path, dir, files in os.walk(PATH): for file in files: current = os.path.join(path, file).replace('\\', '/') file_ls.append(current) if len(current.split('/')) > max_depth: max_depth = len(current.split('/')) PATH에 mother root을 입력 해당 코드는 pdf 파일의 위치만 추출하는 것인데, 만약에..
코린이/실무를 위한 코딩 기록
2021. 6. 4. 14:54