특정 폴더내 디렉토리 리스트 출력 예제
import os
path = 'Y:/Build/FileList'
file_list = os.listdir(path)
print (file_list)
실행 결과:
(selenium) C:\py_do>c:/py_do/selenium/Scripts/python.exe c:/py_do/dir_listup.py
['test1', 'test2', 'dir_list', 'tools']
특정 폴더내 디렉토리들(subdirectory 포함) 순회하면서 리스트 출력 예제
import os
def enum_directory_list(dirname):
for filename in os.listdir(dirname):
file_path = os.path.join(dirname,filename)
if os.path.isdir(file_path):
print(file_path)
enum_directory_list(file_path)
enum_directory_list("특정 폴더 이름")
'Integration & Python' 카테고리의 다른 글
파이썬 - --user option or check the permissions 에러 (0) | 2022.02.16 |
---|---|
인테그레이션 엔지니어 (Integration engineer)의 정의 (0) | 2021.11.16 |
Python 파일 삭제 및 폴더 내 파일 전체 삭제 방법 (1) | 2021.11.08 |
파이썬-마크다운 커맨드라인 인터페이스 사용 (0) | 2021.06.23 |
디렉토리에서 마크 다운 텍스트 생성 HTML로 변환 프로그램 (0) | 2021.06.22 |
댓글