我想要瀏覽當前文件夾及其所有子文件夾,並獲取帶有.htm | .html擴展名的所有文件。我發現,這是可以找出一個對象是否是一個目錄或文件是這樣的:在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
,並在最後,我想擁有所有的文件和它們在陣列中的路徑。有這樣的可能嗎?
可能重複【如何通過在目錄中的文件遍歷?(http://stackoverflow.com/questions/ 4918458/how-to-tra-through-the-files-in-a-directory) – 2011-04-28 11:12:10
但在這個答案中的答案更短,更好。 – Blackie123 2012-02-25 08:51:50