get directory of file python code example

Example 1: get directory of file python

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

Example 2: get files in directory python

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

Example 3: python get dir

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

#current dir
cwd = os.getcwd()

Example 4: python get files in directory

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

Example 5: pathlib path get directory of current file

import pathlib
pathlib.Path(__file__).parent.absolute()

Example 6: python get files in directory

from pathlib import Path
for txt_path in Path("/path/folder/directory").glob("*.txt"):
  print(txt_path)