Me gustaría navegar a través de la carpeta actual y todas sus subcarpetas y obtener todos los archivos con extensiones .htm | .html. He descubierto que es posible averiguar si un objeto es un directorio o un archivo de la siguiente manera:Buscar archivos y subcarpetas en Python
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
y, al final, me gustaría tener todos los archivos y sus caminos en una matriz. ¿Es posible algo así?
posible duplicado de [Cómo recorrer a través de los archivos en un directorio?] (Http://stackoverflow.com/questions/ 4918458/how-to-travelling-through-the-files-in-a-directory) –
aunque la respuesta en este caso es mucho más corta y mejor. – Blackie123