#๐Ÿ”’ I plan on sending my code to someone else. How can I make it work regardless of path?

14 messages ยท Page 1 of 1 (latest)

delicate yacht
#

Currently in my code I am parsing a file in the same directory as my .py file. When I send it to someone else I assume that path will no longer work.

for line in open(r'C:\Users\User\project\Q1.dat'):

How can I modify this to look in the local directory instead of needing the full path?

short basaltBOT
#

@delicate yacht

Python help channel opened

Remember to:

  • Ask your Python question, not if you can ask or if there's an expert who can help.
  • Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
  • Explain what you expect to happen and what actually happens.

:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.

royal heron
#

there's a __file__ that gives you the location of the .py

#

you can manipulate that to go to whichever directory I suppose

delicate yacht
#

Q1path = Path(file).parent / "Q1.dat" seems to work

#

many thanks

royal heron
#

You can close the channel if you have no further questions

delicate yacht
#

is it a /something? I'm somewhat new, sry ๐Ÿ˜›

royal heron
#

it's !close

delicate yacht
#

ty!

#

!close

short basaltBOT
#
Python help channel closed

This help channel has been closed and it's no longer possible to send messages here. If your question wasn't answered, feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.