Answers for "absolute file path python"

7

python get full path

import os
# you have to be in the same directory as the file
file = 'myfile.txt'
# or also
file = 'directory/to/myfile.txt'

path = os.path.abspath(file)
Posted by: Guest on May-16-2020
2

python get absolute path of file

>>> import os
>>> os.path.abspath("mydir/myfile.txt")
'C:/example/cwd/mydir/myfile.txt'
Posted by: Guest on June-02-2021
-1

python path absolute

from patlib import Path
relative = Path("my_path")
absolute = relative.absolute()
Posted by: Guest on May-07-2021

Python Answers by Framework

Browse Popular Code Answers by Language