python get filename from path code example

Example 1: python get filename from path

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

Example 2: get files in directory python

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

Example 3: python extract thefile name from relative path

import os
infile = "./../../../../_data/matrix_data/5mer_normalized.tsv"
print(os.path.basename(infile))
>>> "5mer_normalized.tsv"

Example 4: find the path to a file python

import os
print os.path.abspath("something.exe")

Example 5: python get path of file

>>> import os
>>> filepath="/media/rtsuse/some/random/filepath/with/logfile.log"
>>> os.path.dirname(filepath)
'/media/rtsuse/some/random/filepath/with'