Python Forum
How to get calling directory?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to get calling directory?
#1
Question 
Is there a way to get the calling directory in Python? I want to have the program in one spot and call it from more than one spot. The program and Python are in the path but the program works on the local directory. Help is always welcome, thanks.
Reply
#2
You can call it by hard coding the path
You can use os.path
You can use pathlib
There are probably other ways as well
I welcome all feedback.
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags
Download my project scripts


Reply
#3
The problem is that I want the program to operate in the calling directory wherever I am.
I have a directory for each month and want it to convert data that is in the directory. Is there a way to call the program with the directory name added like
Python convert.py(this directory)
Reply
#4
Use __file__ to get the path to the source file. For example.
from pathlib import Path


src_path = Path(__file__).parent
print(__file__, src_path)
Output:
u:\>c: C:\>python c:\users\hystadd\documents\python\sandbox\junk3.py c:\users\hystadd\documents\python\sandbox\junk3.py c:\users\hystadd\documents\python\sandbox C:\>
Reply
#5
I will try this in the morning, thanks.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
Question How to get the calling directory? franklin97355 9 1,656 Sep-18-2024, 09:04 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

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