使用listdir()时的FileNotFoundError

时间:2015-12-02 04:10:35

标签: git python-3.5

我在/mirror文件夹中列出了一堆裸git存储库,如下所示:

def pusher():
    push_list = list()
    for repo in listdir("/mirrors"):
        remote_repo = repo.rsplit('.')
        push_list.append(remote_repo[0])
    logger.info("repositories to push: %s" % push_list)
    listdir("/mirror")

在分割目录名末尾的for后,.git循环将目录成功添加到列表中。但是,当我在listdir()循环后执行for时,我得到了这个:

[03:47:52] INFO [root.pusher:64] repositories to push: ['a', 'b', 'c', ..., 'z']
Traceback (most recent call last):
  File "mirror.py", line 90, in <module>
    pusher()
  File "mirror.py", line 65, in pusher
    listdir('/mirror')
FileNotFoundError: [Errno 2] No such file or directory: '/mirror'

Full code with minor redactions。是什么导致它在第二个listdir()上失败,而不是在for循环中失败?

我使用的是python:3.5-onbuild Docker镜像中的Python 3.5。我的容器通过SSH密钥复制,然后执行脚本。

1 个答案:

答案 0 :(得分:0)

在最后一行,listdir("/mirror")拼写错误;应该是"/mirrors"。 :(