Answers for "get the folder path of a file python"

9

get path to current directory python

import os
os.path.abspath(os.getcwd())
Posted by: Guest on September-16-2020
8

get directory of file python

import os 
dir_path = os.path.dirname(os.path.realpath(__file__))
Posted by: Guest on April-03-2020

Code answers related to "get the folder path of a file python"

Python Answers by Framework

Browse Popular Code Answers by Language