python 目錄操作

來源:互聯網
上載者:User

標籤:

一、 主要的目錄操作
  • 變換目錄的方法。
  • 列出檔案和檔案資訊。
  • 建立和刪除目錄。
  • 檢測是目錄還是檔案。
  • 尋找指定類型的檔案。
二、 詳細使用。

  首先,匯入os模組。import os

  擷取目前的目錄:os.getcwd()。 
  建立目錄: os.mkdir() 
   
  列出目錄下檔案:os.listdir(path) 
  - os.listdir(".")列出目前的目錄。 
  - os.listdir("/")列出根目錄。 
   
  判斷目錄下子項是檔案還是目錄。 
 

 for item in os.listdir("."):      if os.path.isfile(item):          print item + "is a file."        elif os.path.isdir(item):            print item + "is a directory."        else:            print "unkwon type."

 

  尋找指定檔案,需要匯入glob模組。 
  

import osimport globfor item in glob.glob(os.path.join(".","*.py")):  #join第一個參數為搜素的路徑,第二個參數為搜尋檔案的類型    print item 

 

   

  也可以指定包含的任意關鍵字。 
  

import osimport globfor item in glob.glob(os.path.join(".","*op*")):  #檔案名稱種包含“op”關鍵字的檔案。    print item 

 

  刪除目錄和檔案。 
  

# assuming there are no symbolic links.# CAUTION:  This is dangerous!  For example, if top == ‘/‘, it# could delete all your disk files.import osfor root, dirs, files in os.walk(top, topdown=False):    for name in files:        os.remove(os.path.join(root, name))    for name in dirs:        os.rmdir(os.path.join(root, name))

 

 

python 目錄操作

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.