如何在Mac OS上使用Python知道桌面中是否存在文件?

时间:2016-05-28 05:58:12

标签: python macos

我想知道Mac OS桌面上是否有文件,我写了代码:

if path.exists('~/Desktop/AZDif.png'):
    print 'Yes'
else:
    print 'No, the file is not there'

我看到文件实际上并不在桌面上。如何正确编写代码?

1 个答案:

答案 0 :(得分:0)

以下是我使用Python找到的Mac OS解决方案:

if path.exists(path.expanduser('~/Desktop/AZDif.png')):
    print 'Yes'

也应该有一种使用绝对路径的方法。我会检查并改进答案。