현재 폴더와 모든 하위 폴더를 찾아보고 .htm | .html 확장명을 가진 모든 파일을 가져오고 싶습니다. 파이썬에서 파일 및 하위 폴더 찾아보기
import os
dirList = os.listdir("./") # current directory
for dir in dirList:
if os.path.isdir(dir) == True:
# I don't know how to get into this dir and do the same thing here
else:
# I got file and i can regexp if it is .htm|html
하고 결국
, 나는 모든 파일과 배열의 자신의 경로를 가지고 싶다 : 나는 객체가이 같은 디렉토리 나 파일이 있는지 여부를 알 수 있다는 것을 발견했다. 그게 가능한가?
가능한 중복 [디렉토리에있는 파일을 통해 통과하는 방법?] (http://stackoverflow.com/questions/ 4918458/how-to-travers-through-the-files-in-a-directory) –
아직이 답변은 훨씬 짧고 좋습니다. – Blackie123