python get directory of file code example

Example 1: python list files in current directory

import os

files = os.listdir('.')
print(files)
for file in files:
  # do something

Example 2: working directory python

import os
cwd = os.getcwd()

Example 3: get directory of file python

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

Example 4: os get current directory

import os

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

#Change the Current working Directory
os.chdir('/home/varun')

Example 5: python get all file names in directory

import glob
print(glob.glob("/home/adam/*.txt"))

Example 6: list files in directory python

import os
print(os.listdir('/path/to/folder/to/list'))