Answers for "how to navigate to a folder in python"

1

python change working directory to file directory

import os

abspath = os.path.abspath(__file__)
dname = os.path.dirname(abspath)
os.chdir(dname)
Posted by: Guest on March-23-2021
6

python cd to directory

import os
os.chdir(path)
Posted by: Guest on March-02-2020
2

open file in python directory

path = 'C:\\Users\\Username\\Path\\To\\File'
file=open(path, "r")
Posted by: Guest on May-13-2020

Code answers related to "how to navigate to a folder in python"

Python Answers by Framework

Browse Popular Code Answers by Language