pygame.error:无法打开路径

时间:2017-05-02 17:10:20

标签: python dictionary pygame os.path

我需要加载文件中的大量图像,这些图像与.py文件位于同一文件中,但我不断收到此错误:pygame.error: Couldn't open C:\Users\USER\Desktop\tester\animals

这是我的代码:

import os
firstpath = str(os.path.dirname(os.path.abspath(__file__)))

我需要能够访问此子文件,无论它本身和我的脚本是什么。

def load_images():
    animal_dict = {}
    path = (firstpath+"\animals")
    animal = os.listdir(path)
    for images in animal:
        if images.endswith(".png"):
            path = os.path.join(path)
            key = images[:-4]
            animal_dict[key] = pygame.image.load(path).convert()
    return country_dict

load_images()

0 个答案:

没有答案