Python Forum
automatically get absolute paths
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
automatically get absolute paths
#1
Hello,
I want to automatically convert relative paths to absolute paths.


dirname = os.path.dirname(__file__)
os.path.join(dirname, r'relative/path/file.txt')

This worked fine but I used this in several places so I thought it makes sense to put it in a separate module. So I did. But when I import it, __file__ points to the module, not to the calling file.

I could give __file__ as an argument enverytime I call that function but it would be easier if I don't have to do that. Any ideas?

Thats the (very simple) function:
import os
def AbsPath(relPath):
    dirName = os.path.dirname(__file__)
    absPath = os.path.join(dirName, relPath)
    return absPath
Reply


Messages In This Thread
automatically get absolute paths - by oclmedyb - Mar-09-2021, 08:34 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Absolute paths in subprocess - file not found kittyticker 4 786 Jan-28-2024, 10:37 PM
Last Post: kittyticker
  pdf2image, poppler and paths jehoshua 18 16,378 Jun-14-2022, 06:38 AM
Last Post: jehoshua
  Windows paths issue otalado 3 1,606 May-29-2022, 09:11 AM
Last Post: snippsat
  Absolute beginner am I missing something? kamren 7 3,406 Sep-25-2020, 05:32 AM
Last Post: buran
  chkFile with absolute paths JarredAwesome 7 3,206 Sep-21-2020, 03:51 AM
Last Post: bowlofred
  absolute imports between folders mikisDW 0 1,637 Aug-05-2020, 12:26 PM
Last Post: mikisDW
  Paths millpond 12 5,593 Jul-30-2020, 01:16 PM
Last Post: snippsat
  Problems with windows paths delphinis 6 5,628 Jul-21-2020, 06:11 PM
Last Post: Gribouillis
  I am an absolute newbie.Help me! feynarun 4 2,661 Apr-11-2020, 09:25 PM
Last Post: feynarun
  Shortest paths to win snake and ladder sandaab 5 4,458 Jun-30-2019, 03:20 PM
Last Post: sandaab

Forum Jump:

User Panel Messages

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