gpt4 book ai didi

python - 检查文件是否可以用 Python : try or if/else? 读取

转载 作者:IT老高 更新时间:2023-10-28 20:44:42 25 4
gpt4 key购买 nike

我有以下代码:

import glob, os
for file in glob.glob("\\*.txt"):
if os.access(file, os.R_OK):
# Do something
else:
if not os.access(file, os.R_OK):
print(file, "is not readable")
else:
print("Something went wrong with file/dir", file)
break

但我不完全确定这是否是正确的做法。使用 trycatch 错误会更好吗?如果是这样,我该如何尝试以提高可读性?请注意我的 else 语句中的 break。一旦无法读取文件,我就想中止循环。

最佳答案

一种更明确的方法来检查 file 是否实际上是一个文件而不是目录,例如,它是可读的:

from os import access, R_OK
from os.path import isfile

file = "/some/path/to/file"

assert isfile(file) and access(file, R_OK), \
f"File {file} doesn't exist or isn't readable"

关于python - 检查文件是否可以用 Python : try or if/else? 读取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32073498/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com