首頁 >後端開發 >Python教學 >在 Pygame 中載入資源時如何修復'FileNotFoundError”?

在 Pygame 中載入資源時如何修復'FileNotFoundError”?

Patricia Arquette
Patricia Arquette原創
2024-12-17 10:05:21530瀏覽

How to Fix

使用Pygame 載入資源:解決「FileNotFoundError」

嘗試在Pygame 中載入圖片或聲音等外部資源時,您可能會遇到到“FileNotFoundError:沒有這樣的檔案或目錄”錯誤。此問題通常是由於資源檔案路徑不正確造成的,特別是當路徑相對於目前工作目錄時。

解決方案:設定工作目錄或建立絕對檔案路徑

要解決此錯誤,請確保將工作目錄設定為資源檔案所在的位置。這可以透過 os模組來實現:

import os

os.chdir(os.path.dirname(os.path.abspath(__file__)))

或者,您可以透過組合檔案的目錄路徑和檔案名稱來建立絕對檔案路徑:

filePath = os.path.join(sourceFileDir, 'test_bg.jpg')
surface = pygame.image.load(filePath)

替代使用pathlib的解決方案

p athlib模組提供了另一個設定工作目錄或建立絕對目錄的方法檔案路徑:

設定工作目錄:

import os, pathlib

os.chdir(pathlib.Path(__file__).resolve().parent)

建立絕對檔案路徑:

import pathlib

filePath = pathlib.Path(__file__).resolve().parent / 'test_bg.jpg'
surface = pygame.image.load(filePath)

以上是在 Pygame 中載入資源時如何修復'FileNotFoundError”?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn