Notice
Recent Posts
Recent Comments
Link
SeouliteLab
[Python/파이썬] 파일 개수 확인하기 본문
파일 개수를 확인하는 것은 파일 시스템 내의 파일 수를 파악하고 관리하는 데 도움이 됩니다. 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)
'프로그래밍' 카테고리의 다른 글
[Python/파이썬] print() 줄바꿈 없이 출력하기 (0) | 2024.03.02 |
---|---|
[Python/파이썬] 다른 파일의 변수 참조, 함수 호출하기 (0) | 2024.03.02 |
[Python/파이썬] 파일 수정 시간, 생성 시간 확인 (0) | 2024.03.02 |
[Python/파이썬] 파일 끝 찾기 (0) | 2024.03.02 |
[Python/파이썬] 텍스트 파일 이어서 쓰기 (0) | 2024.03.02 |