非常简单的概念,但我无法弄清楚并且可以使用一些帮助。我需要检查我的 Program Files 目录中的文件是否存在,所以我有以下内容:
import os
if not os.path.exists('C:/Program Files/file_to_be_found'):
print "ERROR: Not Found!"
else:
#rest of program...
但是我知道我不能这样做。如何在命令中写入路径以接受“程序”和“文件”之间的空格?
非常简单的概念,但我无法弄清楚并且可以使用一些帮助。我需要检查我的 Program Files 目录中的文件是否存在,所以我有以下内容:
import os
if not os.path.exists('C:/Program Files/file_to_be_found'):
print "ERROR: Not Found!"
else:
#rest of program...
但是我知道我不能这样做。如何在命令中写入路径以接受“程序”和“文件”之间的空格?