rank vote view answer url
4 4530 3091022 39 url

用Python如何一个文件是否存在?

不用try:语句可以一个文件存在


如果不确定文件存不存在,可以这样做:

import os.path
os.path.isfile(fname)