파 이 썬 을 이용 하여 디 렉 터 리 의 파일 예 시 를 자세히 봅 니 다.
우 리 는 일상적인 개발 에서 자주 파일 에 관 한 조작 을 만 날 수 있다.예 를 들 어 디 렉 터 리 내용 을 보 는 기능 을 실현 한다.Linux 의 tree 명령 과 유사 합 니 다.디 렉 터 리 에 지정 한 접미사 파일 의 줄 수 를 통계 합 니 다.
디 렉 터 리 에 있 는 모든 파일 경 로 를 list 에 저장 하 는 기능 입 니 다.접미사 판단 기능 을 추가 하여 지정 한 접미사 이름 파일 을 검색 할 수 있 습 니 다.주로 재 귀적 인 방법 을 이용 하여 파일 을 검색 한다.
tree 기능 예제 코드 모방
Python2.7
모든 파일 목록
귀속 법
import os
def tree_dir(path, c_path='', is_root=True):
"""
Get file list under path. Like 'tree'
:param path Root dir
:param c_path Child dir
:param is_root Current is root dir
"""
res = []
if not os.path.exists(path):
return res
for f in os.listdir(path):
if os.path.isfile(os.path.join(path, f)):
if is_root:
res.append(f)
else:
res.append(os.path.join(c_path, f))
else:
res.extend(tree_dir(os.path.join(path, f), f, is_root=False))
return res
다음은 접 두 사 를 넣 어 판단 하 는 방법 입 니 다.파일 을 찾 은 후 접미사 요구 에 부합 되 는 지 판단 하 세 요.요구 에 부합 되 지 않 는 파일 은 건 너 뜁 니 다.
def tree_dir_sur(path, c_path='', is_root=True, suffix=''):
""" Get file list under path. Like 'tree'
:param path Root dir
:param c_path Child dir
:param is_root Current is root dir
:param suffix Suffix of file
"""
res = []
if not os.path.exists(path) or not os.path.isdir(path):
return res
for f in os.listdir(path):
if os.path.isfile(os.path.join(path, f)) and str(f).endswith(suffix):
if is_root:
res.append(f)
else:
res.append(os.path.join(c_path, f))
else:
res.extend(tree_dir_sur(os.path.join(path, f), f, is_root=False, suffix=suffix))
return res
if __name__ == "__main__":
for p in tree_dir_sur(os.path.join('E:\ws', 'rnote', 'Python_note'), suffix='md'):
print p
디 렉 터 리 에 지정 한 접미사 파일 의 줄 수 를 통계 합 니 다.os 의 방법 만 적용 하고 디 렉 터 리 에 고정된 위치 에 있 는 파일 만 검색 합 니 다.
# -*- coding: utf-8 -*-
import os
def count_by_categories(path):
""" Find all target files and count the lines """
if not os.path.exists(path):
return
c_l_dict = dict() # e.g. {category: lines}
category_list = [cate for cate in os.listdir(path) if
os.path.isdir(os.path.join(path, cate)) and not cate.startswith('.')]
for category_dir in category_list:
line_count = _sum_total_line(os.path.join(path, category_dir), '.md')
if line_count > 0:
c_l_dict[category_dir] = line_count
return c_l_dict
def _sum_total_line(path, endswith='.md'):
""" Get the total lines of target files """
if not os.path.exists(path) or not os.path.isdir(path):
return 0
total_lines = 0
for f in os.listdir(path):
if f.endswith(endswith):
with open(os.path.join(path, f)) as cur_f:
total_lines += len(cur_f.readlines())
return total_lines
if __name__ == '__main__':
note_dir = 'E:/ws/rnote'
ca_l_dict = count_by_categories(note_dir)
all_lines = 0
for k in ca_l_dict.keys():
all_lines += ca_l_dict[k]
print 'all lines:', str(all_lines)
print ca_l_dict
메모 폴 더 를 예 로 들 어 분류 디 렉 터 리 에 있 는 파일 의 총 줄 수 를 각각 집계 하고 출력 을 테스트 합 니 다.
all lines: 25433
{'flash_compile_git_note': 334, 'Linux_note': 387, 'Algorithm_note': 3637, 'Comprehensive': 216, 'advice': 137, 'Java_note': 3013, 'Android_note': 11552, 'DesignPattern': 2646, 'Python_note': 787, 'kotlin': 184, 'cpp_note': 279, 'PyQt_note': 439, 'reading': 686, 'backend': 1136}
총결산이상 은 이 글 의 전체 내용 입 니 다.본 논문 의 내용 이 여러분 의 학습 이나 업무 에 어느 정도 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 댓 글 을 남 겨 주 셔 서 저희 에 대한 지지 에 감 사 드 립 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
로마 숫자를 정수로 또는 그 반대로 변환그 중 하나는 로마 숫자를 정수로 변환하는 함수를 만드는 것이었고 두 번째는 그 반대를 수행하는 함수를 만드는 것이었습니다. 문자만 포함합니다'I', 'V', 'X', 'L', 'C', 'D', 'M' ; 문자열이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.