728x90
반응형
파일 목록 얻기
glob.glob(wildcard)
- 유닉스 경로명 패턴 스타일로 파일 목록을 얻을 수 있다.
os.listdir(path)
- 지정된 디렉토리의 전체 파일 목록을 얻을 수 있다.
dircache.listdir(path)
- os.listdir(path)와 동일한 파일 목록을 전달한다.
path가 변경되지 않았을 때, dircache.listdir()은 다시 디렉토리 구조를 읽지 않고 이미 읽은 정보를 활용
dircache.annotate(head, list) - 일반 파일명과 디렉토리명을 구분해주는 함수
디렉토리 다루기
os.chdir(path) - 작업하고 있는 디렉토리 변경
os.getcwd() - 현재 프로세스의 작업 디렉토리 얻기
os.remove( filename or path ) - 파일이나 디렉토리 지우기
os.mkdir( path ) - 디렉토리 만들기
os.makedirs( path ) - 디렉토리 만들기와 동일하지만 /tmp/include/gl/temp 처럼 긴 경로를 한번에 만들어 준다.
os.path.abspath(filename) - 파일의 상대 경로를 절대 경로로 바꾸는 함수
os.path.exists(filename) - 주어진 경로의 파일이 있는지 확인하는 함수
os.curdir() - 현재 디렉토리 얻기
os.pardir() - 부모 디렉토리 얻기
os.sep() - 디렉토리 분리 문자 얻기. windows는 \ linux는 / 를 반환한다.
경로명 분리하기
os.path.basename(filename) - 파일명만 추출
os.path.dirname(filename) - 디렉토리 경로 추출
os.path.split(filename) - 경로와 파일명을 분리
os.path.splitdrive(filename) - 드라이브명과 나머지 분리 (MS Windows의 경우)
os.path.splitext(filename) - 확장자와 나머지 분리
참고자료 : wikidocs.net/3717
728x90
반응형
'Programming > Python' 카테고리의 다른 글
[Python] pytube 이용하여 Youtube 영상 저장하기 (0) | 2020.12.28 |
---|---|
[Python] GPU 지정하여 Python 코드 실행하기 (0) | 2020.11.20 |
[Python] Python Schedule 모듈 이용하여 원하는 시간대에 프로그램 실행 시키기 (5) | 2020.11.02 |
[Python] Why time.time() gives 0.0? (0) | 2020.06.17 |
[Python] Import 는 꼭 맨 윗줄에 써야하는가? (2) | 2020.04.17 |