Python Language os.path check if the given path is a directory, file, symbolic link, mount point etc.

30% OFF - 9th Anniversary discount on Entity Framework Extensions until December 15 with code: ZZZANNIVERSARY9

Example

to check if the given path is a directory

dirname = '/home/john/python'
os.path.isdir(dirname)

to check if the given path is a file

filename = dirname + 'main.py'
os.path.isfile(filename)

to check if the given path is symbolic link

symlink = dirname + 'some_sym_link'
os.path.islink(symlink)

to check if the given path is a mount point

mount_path = '/home'
os.path.ismount(mount_path)


Got any Python Language Question?