Answers for "get name directory python"

2

directory name python

# Directory name from path of file
import os
file_name = "/home/ubuntu/Project/demo.txt"
dir_name = os.path.dirname(file_name)
print(dir_name)
Posted by: Guest on March-26-2021
2

python get dir

import os 
#full path
dir_path = os.path.dirname(os.path.realpath(__file__))

#current dir
cwd = os.getcwd()
Posted by: Guest on December-25-2020

Code answers related to "get name directory python"

Python Answers by Framework

Browse Popular Code Answers by Language