- 主题:python怎样处理文件不存在的异常
这个只能判断是文件还是目录吧
【 在 lele (乐乐) 的大作中提到: 】
: 发信人: lele (乐乐), 信区: Python
: 标 题: Re: Re:python怎样处理文件不存在的异常
: 发信站: 水木社区 (Sat Mar 20 16:19:57 2021), 转信
:
--
FROM 117.136.38.*
os.path.isfile(path)
Return True if path is an existing regular file. This follows symbolic links, so both islink() and isfile() can be true for the same path.
【 在 nikezhang 的大作中提到: 】
: 这个只能判断是文件还是目录吧
--
FROM 85.5.187.*
如果文件不存在的异常处理对你很重要,先单独判断文件是否存在。如果存在,再用with open处理内容。
提前判断文件是否存在,不影响性能。
--
FROM 118.247.231.*