본문 바로가기
Integration & Python

파이썬, Python 특정 폴더내 디렉토리 리스트 출력

by 누워서 코딩 2021. 11. 12.

특정 폴더내 디렉토리 리스트 출력 예제

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("특정 폴더 이름")

 


 

Python 파일 삭제 및 폴더 내 파일 전체 삭제 방법

파이썬으로 특정 파일 또는 특정 디렉토리 내 파일 전체를 삭제하고 싶은 경우가 있습니다. 특정 파일의 삭제는 os.remove 함수를 통해 간단히 처리할 수 있습니다. 파이썬으로 파일 삭제 방법 os.re

freernd.tistory.com

댓글