如何检查argv是否引用python2.7中的现有文件?

这个问题在这里已经有了答案:

  • 如何检查文件是否存在? 39个答案

  • import os
    os.path.exists(path)
    

    如果路径存在,将返回True。

    os.path.isfile(path)
    

    如果路径是文件,将返回True。


    isfile可能是你正在寻找的东西。

    from os.path import isfile
    from sys import argv
    if len(argv) > 1:
        print "is file", isfile(argv[1])
    
    链接地址: http://www.djcxy.com/p/7313.html

    上一篇: How to check if an argv refers to an existing file in python2.7?

    下一篇: how to check existence of a core files in directory using Python