Python Forum
Python is unable to read file
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python is unable to read file
#11
You should create a folder where you want to work on your project. On windows you might create a pygame_tutorial folder in your Documents folder. In this folder you would put your Untitled.jpeg (and give it a better name), other image files, and your python file(s). Now, when you want to work on the pygame_tutorial, just open Documents\pygame_tutorial. I have a shortcut to Documents on my desktop, so it would just be a couple of clicks.

You always want to have support files in the same folder as your program file(s). This lets you use relative paths instead of hardcoded paths. In your example, you should not have the full path for the image file encoded in the python file. You could use a relative path, but that forces you to change to the directory before running your program. I like programs to be independent of their file location, and python makes this easy.
import pygame
from pathlib import Path

WIDTH, HEIGHT = 1000, 800
WIN = pygame.display.set_mode((WIDTH, HEIGHT))
pygame.display.set_caption('Asteroid Dodge')
HOME = Path(__file__).parent
BG = pygame.image.load(HOME / "Unkown.jpeg")
Each python module has a variable named __file__ that is the full filename for the file. This can be used to get the home folder for the file. In the code above I use the HOME path to load the background image, which I know resides in the same folder as my python file.
Reply


Messages In This Thread
Python is unable to read file - by Genericgamemaker - Jul-18-2024, 08:06 PM
RE: Python is unable to read file - by deanhystad - Jul-18-2024, 08:41 PM
RE: Python is unable to read file - by menator01 - Jul-19-2024, 04:28 AM
RE: Python is unable to read file - by deanhystad - Jul-19-2024, 02:16 PM
RE: Python is unable to read file - by snippsat - Jul-19-2024, 04:01 PM
RE: Python is unable to read file - by snippsat - Jul-19-2024, 05:20 PM
RE: Python is unable to read file - by deanhystad - Jul-19-2024, 05:20 PM
RE: Python is unable to read file - by deanhystad - Jul-19-2024, 05:35 PM
RE: Python is unable to read file - by snippsat - Jul-19-2024, 06:42 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to read a file as binary or hex "string" so that I can do regex search? tatahuft 3 972 Dec-19-2024, 11:57 AM
Last Post: snippsat
  Read TXT file in Pandas and save to Parquet zinho 2 1,192 Sep-15-2024, 06:14 PM
Last Post: zinho
  Pycharm can't read file Genericgamemaker 5 1,509 Jul-24-2024, 08:10 PM
Last Post: deanhystad
  Connecting to Remote Server to read contents of a file ChaitanyaSharma 1 3,128 May-03-2024, 07:23 AM
Last Post: Pedroski55
  Recommended way to read/create PDF file? Winfried 3 4,513 Nov-26-2023, 07:51 AM
Last Post: Pedroski55
  python Read each xlsx file and write it into csv with pipe delimiter mg24 4 3,699 Nov-09-2023, 10:56 AM
Last Post: mg24
  read file txt on my pc to telegram bot api Tupa 0 2,508 Jul-06-2023, 01:52 AM
Last Post: Tupa
  parse/read from file seperated by dots giovanne 5 2,209 Jun-26-2023, 12:26 PM
Last Post: DeaD_EyE
  Formatting a date time string read from a csv file DosAtPython 5 4,767 Jun-19-2023, 02:12 PM
Last Post: DosAtPython
  How do I read and write a binary file in Python? blackears 6 23,811 Jun-06-2023, 06:37 PM
Last Post: rajeshgk

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020