python檢測給定的路徑是否存在的方法
os.path模塊提供了函數用于檢測給定的路徑是否存在
1、path參數所指的文件或文件夾存在,調用os.path.exists(path)返回True,否則返回False
>>>os.path.exists('C:\\Windows')
True
>>>os.path.exists('C:\\Win')
False
2、path參數存在并且是一個文件,調用os.path.isfile(path)返回True,否則返回False
>>>os.path.isfile('C:\\Windows\\System32')
False
>>>os.path.isfile('C:\\Windows\\System32\\C_20280.NLS')
True
3、path參數存在并且是一個文件夾,調用os.path.isdir(path)返回True,否則返回False
>>>os.path.isdir('C:\\Windows\\System32\\C_20280.NLS')
False
>>>os.path.isdir('C:\\Windows\\System32')
True
以上就是python檢測給定的路徑是否存在的方法,希望能對大家有所幫助。更多Python學習教程請關注IT培訓機構:千鋒教育。