[156] 파일인지 디렉토리인지 확인하기(os.path.isfile, os.path.isdir)

책 내용에 대한 무단배포 방지를 위해 최소한으로 정리

import os
from os.path import exists, isdir, isfile

files = os.listdir()
for file in files:
	if isdir(file):
		print(f'DIR: {file}')
		
for file in files:
	if isfile(file):
		print(f'FILE: {file}')

Comments