我想知道Mac OS桌面上是否有文件,我写了代码:
if path.exists('~/Desktop/AZDif.png'):
print 'Yes'
else:
print 'No, the file is not there'
我看到文件实际上并不在桌面上。如何正确编写代码?
答案 0 :(得分:0)
以下是我使用Python找到的Mac OS解决方案:
if path.exists(path.expanduser('~/Desktop/AZDif.png')):
print 'Yes'
也应该有一种使用绝对路径的方法。我会检查并改进答案。