无法使用python(mac)列出文档中的文件

时间:2017-02-17 13:05:03

标签: python

嘿我正在尝试列出文档中的所有文件(在mac上)。在python中我使用此代码:

import os
for file in os.listdir("/Documents/"):
    print(file)

我一直收到错误No such file or directory。我在这里做错了什么?

2 个答案:

答案 0 :(得分:4)

该文件夹不是/Documents/Documents位于您的主目录下方。使用:

for file in os.listdir(os.path.expanduser('~/Documents')):
    # your code here

答案 1 :(得分:1)

你应该给出绝对路径,对于Documents,它应该是:

~/Documents or
/home/your-user-name/Documents