首頁 > 軟體

python判定檔案目錄是否存在及建立多層目錄

2022-06-10 18:01:00

前言

通常在讀寫檔案之前,我們需要先判斷檔案或者目錄是否存在。不然在接下來的處理中可能會報錯。所以在做任何操作之前,最好還是先判斷檔案、目錄是否存在。

下面將從介紹3種判斷檔案、目錄是否存在的方法:

  • os模組
  • try語句
  • pathlib模組

1、os模組

(1)判斷檔案是否存在

import os
os.path.exists(test_file.txt)
#True
os.path.exists(no_exist_file.txt)
#False

(2)判斷資料夾是否存在

import os
os.path.exists(test_dir)
#True
os.path.exists(no_exist_dir)
#False

(3)其他

可以看出用os.path.exists()方法,判斷檔案和資料夾是一樣。其實這種方法還是有個問題,假設你想檢查“test_data”檔案是否存在,但是當前路徑下有個叫“test_data”的目錄,這樣就可能出現誤判。

為了避免這樣的情況,可以這樣:只檢查檔案

    import os
    os.path.isfile("test-data")

通過這個方法,如果檔案”test-data”不存在將返回False,反之返回True。
即是檔案存在,你可能還需要判斷檔案是否可進行讀寫操作。

(4)建立多層目錄

os.makedirs(path) #多層建立目錄
#比如:os.makedirs('/home/ai_user/')

(5)建立單層目錄

os.mkdir(path) 建立目錄
import os
def mkdir(path):
    # 去除首尾的空格
    path=path.strip()
    # 去除尾部  符號
    path=path.rstrip("\")
    isExists=os.path.exists(path)
    # 判斷結果
    if not isExists:
        # 如果不存在則建立目錄
        # 建立目錄操作函數
        os.makedirs(path) 
        print(path+' 建立成功')
        return True
    else:
        # 如果目錄存在則不建立,並提示目錄已存在
        print(path+' 目錄已存在')
        return False

# 定義要建立的目錄
mkpath="d:\qttc\web\"
# 呼叫函數
mkdir(mkpath)

說明:

在以上DEMO的函數裡,我並沒有使用os.mkdir(path)函數,而是使用了多層建立目錄函數os.makedirs(path)。這兩個函數之間最大的區別是當父目錄不存在的時候os.mkdir(path)不會建立,os.makedirs(path)則會建立父目錄。

比如:例子中我要建立的目錄web位於D槽的qttc目錄下,然而我D槽下沒有qttc父目錄,如果使用os.mkdir(path)函數就會提示我目標路徑不存在,但使用os.makedirs(path)會自動幫我建立父目錄qttc,然後在qttc目錄下建立子目錄web。

(6)判斷檔案是否可以讀寫

使用os.access()方法判斷檔案是否可進行讀寫操作。

語法:

os.access(path, mode)

path為檔案路徑,mode為操作模式,有這麼幾種:

  • os.F_OK: 檢查檔案是否存在;
  • os.R_OK: 檢查檔案是否可讀;
  • os.W_OK: 檢查檔案是否可以寫入;
  • os.X_OK: 檢查檔案是否可以執行

該方法通過判斷檔案路徑是否存在和各種存取模式的許可權返回True或者False。

    import os
    if os.access("/file/path/foo.txt", os.F_OK):
        print "Given file path is exist."
    if os.access("/file/path/foo.txt", os.R_OK):
        print "File is accessible to read"
    if os.access("/file/path/foo.txt", os.W_OK):
        print "File is accessible to write"
    if os.access("/file/path/foo.txt", os.X_OK):
        print "File is accessible to execute"

2、try語句

可以在程式中直接使用open()方法來檢查檔案是否存在和可讀寫。

語法:

   open()

如果你open的檔案不存在,程式會丟擲錯誤,使用try語句來捕獲這個錯誤。程式無法存取檔案,可能有很多原因:如果你open的檔案不存在,將丟擲一個FileNotFoundError的異常;檔案存在,但是沒有許可權存取,會丟擲一個PersmissionError的異常。

所以可以使用下面的程式碼來判斷檔案是否存在:

try:
    f = open()
    f.close()
except FileNotFoundError:
    print("File is not found.")
except PersmissionError:
    print("You don't have permission to access this file.")

其實沒有必要去這麼細緻的處理每個異常,上面的這兩個異常都是IOError的子類。

所以可以將程式簡化一下:

try:
    f =open()
    f.close()
except IOError:
    print("File is not accessible.")

使用try語句進行判斷,處理所有異常非常簡單和優雅的。而且相比其他不需要引入其他外部模組。

3、pathlib

pathlib模組在Python3版本中是內建模組,但是在Python2中是需要單獨安裝三方模組。使用pathlib需要先使用檔案路徑來建立path物件。此路徑可以是檔名或目錄路徑。

#檢查路徑是否存在
import pathlib
path = pathlib.Path("path/file")
path.exist()   # True/False 
#檢查路徑是否是檔案
path = pathlib.Path("path/file")
path.is_file()

到此這篇關於python判定檔案目錄是否存在及建立多層目錄的文章就介紹到這了,更多相關python建立目錄內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com