如何使用Python检查文件是否存在?
Python programming language provides different ways to check file existence. In this tutorial we will examine functions like isFile()
and exists()
to check file existence.
Python编程语言提供了多种方法来检查文件是否存在。 在本教程中,我们将讨论类似功能isFile()
和exists()
来检查文件存在。
导入os.path模块 (Import os.path Module)
In order to use isFile()
and exists()
functions we need to import the os.path
module which contains these functions.
为了使用isFile()
和exists()
函数,我们需要导入os.path
包含这些功能模块。
import os.path
isFile()方法 (isFile() Method)
isfile()
is a function in os.path library. This function will be return true if the file is regular file and exists. As we can see following example we should provide the path and name of the file.
isfile()
是os.path库中的函数。 如果文件是常规文件并且存在,则此函数将返回true。 正如我们可以看到以下示例,我们应该提供文件的路径和名称。
import os.path
if(os.path.isfile("/etc/passwd")):
print("/etc/passwd exists")
exist()方法(exists() Method)
exists is os.path method too and returns true if file exists. We will provide /etc/passwd
as parameter to the exists()
function like below.
存在也是os.path方法,如果文件存在,则返回true。 我们将提供/etc/passwd
作为exists()
函数的参数,如下所示。
import os.path
if(os.path.exists("/etc/passwd")):
print("/etc/passwd exists")
如何使用Python检查文件是否存在? 信息移植 (How To Check Whether A File Exists Using Python? Infografic)
翻译自: https://www.poftut.com/check-whether-file-exists-using-python/