標籤:
1 import os, sys 2 3 4 def search(curpath, s): 5 L = os.listdir(curpath) #列出目前的目錄下所有檔案 6 for subpath in L: #遍曆目前的目錄所有檔案 7 if os.path.isdir(os.path.join(curpath, subpath)): #若檔案仍為目錄,遞迴尋找子目錄 8 newpath = os.path.join(curpath, subpath) 9 search(newpath, s)10 elif os.path.isfile(os.path.join(curpath, subpath)): #若為檔案,判斷是否包含搜尋字串11 if s in subpath:12 print os.path.join(curpath, subpath)13 14 def main():15 workingpath = os.path.abspath(‘.‘)16 s = sys.argv[1]17 search(workingpath, s)18 19 if __name__ == ‘__main__‘:20 main()
PS: 關鍵分析紅字部分
如果直接使用 subpath ,因它只是一個檔案名稱,故判斷它是否為目錄語句 os.path.isdir(subpath) 只會在目前的目錄下尋找subpath檔案;而不會隨著search的遞迴而自動在更新路徑下尋找。比如:
+/home/freyr/
|
|--------dir1/
| |
| |-------file1
| |-------file2
|
|--------dir2/
|
|--------file2
Step1、在主目錄下遍曆,subpath = dir1時,先判斷是否為目錄:os.path.isdir(subpath)其實就是os.path.isdir(‘/home/freyr/dir1‘)
Step2、dir1為目錄,遍曆dir1。subpath = file1時,同樣先判斷是否為目錄:os.path.isdir(subpath)其實是os.path.isdir(‘/home/freyr/file1‘),而不是os.path.isdir(‘/home/freyr/dir1/file1‘),很明顯/home/freyr下沒有file1檔案。這樣造成的後果就是除了目前的目錄(一級目錄)檔案(如file2)可以搜尋到,子目錄內檔案都是沒有搜尋到的,因為它每次都是跑到/home/freyr下搜尋檔案名稱
其實簡單的說,os.path.isdir()函數在這裡使用絕對路徑!
Python實現Linux下檔案尋找