Answers for "os.path python current directory"

9

get path to current directory python

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

os get current directory

import os

#Get Current working Directory
currentDirectory = os.getcwd()

#Change the Current working Directory
os.chdir('/home/varun')
Posted by: Guest on June-03-2020

Python Answers by Framework

Browse Popular Code Answers by Language