使用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中文網其他相關文章!