how to get the directory of a file in python code example

Example 1: python get filename from path

import os
print(os.path.basename(your_path))

Example 2: get directory of file python

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

Example 3: get files in directory python

import os
files_and_directories = os.listdir("path/to/directory")

Example 4: python get dir

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

#current dir
cwd = os.getcwd()

Example 5: python get all file names in a dir

from os import listdir
from os.path import isfile, join
onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]

Example 6: python how to get the folder name of a file

# Basic syntax:
import os
os.path.dirname('/path/to/your/favorite/file.txt')
--> '/path/to/your/favorite/'

Tags:

C Example