没有这样的文件或目录以“-”作为文件名

时间:2018-09-27 16:38:43

标签: python file error-handling directory runtime-error

我试图遍历子目录,如下所示:

for root,dirs,files in os.walk(path):
        for directory in dirs:
            for files in os.listdir(path + '/' + directory):
            ...

奇怪的是我遇到了这个错误:

FileNotFoundError: [Errno 2] No such file or directory: '/home/xyz/Desktop/images/sample/-'

-来自哪里?我在子目录中只有两张图片,并且不确定为什么它向我显示-

谢谢。

0 个答案:

没有答案