欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python 如何测试文件是否存在

程序员文章站 2022-12-06 08:35:00
问题你想测试一个文件或目录是否存在。解决方案使用 os.path 模块来测试一个文件或目录是否存在。比如:>>> import os>>> os.path.exis...

问题

你想测试一个文件或目录是否存在。

解决方案

使用 os.path 模块来测试一个文件或目录是否存在。比如:

>>> import os
>>> os.path.exists('/etc/passwd')
true
>>> os.path.exists('/tmp/spam')
false
>>>

你还能进一步测试这个文件时什么类型的。 在下面这些测试中,如果测试的文件不存在的时候,结果都会返回false:

>>> # is a regular file
>>> os.path.isfile('/etc/passwd')
true

>>> # is a directory
>>> os.path.isdir('/etc/passwd')
false

>>> # is a symbolic link
>>> os.path.islink('/usr/local/bin/python3')
true

>>> # get the file linked to
>>> os.path.realpath('/usr/local/bin/python3')
'/usr/local/bin/python3.3'
>>>

如果你还想获取元数据(比如文件大小或者是修改日期),也可以使用 os.path 模块来解决:

>>> os.path.getsize('/etc/passwd')
3669
>>> os.path.getmtime('/etc/passwd')
1272478234.0
>>> import time
>>> time.ctime(os.path.getmtime('/etc/passwd'))
'wed apr 28 13:10:34 2010'
>>>

讨论

使用 os.path 来进行文件测试是很简单的。 在写这些脚本时,可能唯一需要注意的就是你需要考虑文件权限的问题,特别是在获取元数据时候。比如:

>>> os.path.getsize('/users/guido/desktop/foo.txt')
traceback (most recent call last):
  file "<stdin>", line 1, in <module>
  file "/usr/local/lib/python3.3/genericpath.py", line 49, in getsize
    return os.stat(filename).st_size
permissionerror: [errno 13] permission denied: '/users/guido/desktop/foo.txt'
>>>

以上就是python 如何测试文件是否存在的详细内容,更多关于python 测试文件的资料请关注其它相关文章!