SeouliteLab

[Python/파이썬] 파일 개수 확인하기 본문

프로그래밍

[Python/파이썬] 파일 개수 확인하기

Seoulite Lab 2024. 3. 2. 12:49

파일 개수를 확인하는 것은 파일 시스템 내의 파일 수를 파악하고 관리하는 데 도움이 됩니다. Python에서는 os 모듈을 사용하여 파일 개수를 확인할 수 있습니다.

1. 현재 디렉터리의 파일 개수 확인

os 모듈의 `listdir()` 함수를 사용하여 현재 디렉터리의 파일 목록을 가져옵니다. 이 목록의 길이를 통해 파일 개수를 확인할 수 있습니다.

import os

directory = '.'
file_count = len([name for name in os.listdir(directory) if os.path.isfile(os.path.join(directory, name))])
print("현재 디렉터리의 파일 개수:", file_count)

2. 특정 디렉터리의 파일 개수 확인

특정 디렉터리의 파일 개수를 확인하려면 해당 디렉터리 경로를 지정하여 `listdir()` 함수를 호출합니다.

import os

directory = '/path/to/directory'
file_count = len([name for name in os.listdir(directory) if os.path.isfile(os.path.join(directory, name))])
print("특정 디렉터리의 파일 개수:", file_count)

3. 예제 코드

import os

# 현재 디렉터리의 파일 개수 확인
directory = '.'
file_count = len([name for name in os.listdir(directory) if os.path.isfile(os.path.join(directory, name))])
print("현재 디렉터리의 파일 개수:", file_count)

# 특정 디렉터리의 파일 개수 확인
directory = '/path/to/directory'
file_count = len([name for name in os.listdir(directory) if os.path.isfile(os.path.join(directory, name))])
print("특정 디렉터리의 파일 개수:", file_count)