rank vote url
4 1266 285 929 url

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

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


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

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