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.
How to get calling directory?
How to get calling directory?
|
Jul-16-2024, 04:19 AM
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
Jul-16-2024, 07:38 AM
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)
Jul-16-2024, 05:32 PM
(This post was last modified: Jul-16-2024, 05:32 PM by deanhystad.)
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)
Jul-17-2024, 08:12 AM
I will try this in the morning, thanks.
|
|
Possibly Related Threads… | |||||
Thread | Author | Replies | Views | Last Post | |
![]() |
How to get the calling directory? | franklin97355 | 9 | 1,656 |
Sep-18-2024, 09:04 PM Last Post: deanhystad |
Users browsing this thread: 1 Guest(s)