Python實現Linux下檔案尋找

來源:互聯網
上載者:User

標籤:

 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下檔案尋找

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.