标签: python python-2.7
我想在Raspberrry Pi上使用python2搜索CSV文件。如果找不到该文件,程序将生成它。我如何搜索文件并可以通过if语句确定是否存在CSV文件?
答案 0 :(得分:0)
正如@John Anderson所说,您可以使用os模块的os.path。
os
if os.path.exists('path/to/your/csvfile/') is True: print("Do something")