Pygame 錯誤疑難排解:「無法開啟資源文件,FileNotFoundError:沒有這樣的文件或目錄。」
當Pygame 嘗試時會發生此錯誤載入資源檔案(例如圖像、聲音或字體)但無法找到它。原因通常是相對於目前工作目錄的檔案路徑不正確。
解決方案:設定工作目錄或使用絕對檔案路徑
要解決此問題,您可以要麼將目前工作目錄設定為資源檔案所在目錄,要麼在載入檔案時提供絕對檔案路徑。
設定工作目錄:
import os # Change working directory to the file's directory os.chdir(os.path.dirname(os.path.abspath(__file__)))
使用絕對檔案路徑:
# Get the current file's directory source_file_dir = os.path.dirname(os.path.abspath(__file__)) # Construct absolute file path file_path = os.path.join(source_file_dir, 'test_bg.jpg') # Load file surface = pygame.image.load(file_path)
使用絕對檔>模組:
pathlib模組提供了另一種處理文件的方法路徑。設定工作目錄:
import pathlib # Change working directory to the file's directory os.chdir(pathlib.Path(__file__).resolve().parent)
使用絕對檔案路徑:
import pathlib # Get absolute file path file_path = pathlib.Path(__file__).resolve().parent / 'test_bg.jpg' # Load file surface = pygame.image.load(file_path)
以上是如何修復 Pygame 的「無法開啟資源文件,FileNotFoundError」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!