
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
OS Path module in Python
The os.path module is a very extensively used module that is handy when processing files from different places in the system. It is used for different purposes such as for merging, normalizing and retrieving path names in python . All of these functions accept either only bytes or only string objects as their parameters. Its results are specific to the OS on which it is being run.
os.path.basename
This function gives us the last part of the path which may be a folder or a file name. Please the difference in how the path is mentioned in Windows and Linux in terms of the backslash and the forward slash.
Example
import os # In windows fldr = os.path.basename("C:\Users\xyz\Documents\My Web Sites") print(fldr) file = os.path.basename("C:\Users\xyz\Documents\My Web Sites\intro.html") print(file) # In nix* fldr = os.path.basename("/Documents/MyWebSites") print(fldr) file = os.path.basename("/Documents/MyWebSites/music.txt") print(file)
Running the above code gives us the following result −
Output
My Web Sites intro.html MyWebSites music.txt
os.path.dirname
This function gives us the directory name where the folder or file is located.
Example
import os # In windows DIR = os.path.dirname("C:\Users\xyz\Documents\My Web Sites") print(DIR) # In nix* DIR = os.path.dirname("/Documents/MyWebSites") print(DIR)
Running the above code gives us the following result −
Output
C:\Users\xyz\Documents /Documents
os.path.isfile
Sometimes we may need to check if the complete path given, represents a folder or a file. If the file does not exist then it will give False as the output. If the file exists then the output is True.
Example
print(IS_FILE) IS_FILE = os.path.isfile("C:\Users\xyz\Documents\My Web Sites\intro.html") print(IS_FILE) # In nix* IS_FILE = os.path.isfile("/Documents/MyWebSites") print(IS_FILE) IS_FILE = os.path.isfile("/Documents/MyWebSites/music.txt") print(IS_FILE)
Running the above code gives us the following result −
Output
False True False True
os.path.normpath
This is a interesting function which will normalize the given path by eliminating extra slashes or changing the backslash to forward slash depending on which OS it is. As you can see the output below varies depending on which OS you run the program on.
Example
import os # Windows path NORM_PATH = os.path.normpath("C:/Users/Pradeep/Documents/My Web Sites") print(NORM_PATH) # Unix Path NORM_PATH = os.path.normpath("/home/ubuuser//Documents/") print(NORM_PATH)
Running the above code gives us the following result −
Output
# Running in Windows C:\Users\Pradeep\Documents\My Web Sites \home\ubuuser\Documents # Running in Linux C:/Users/Pradeep/Documents/My Web Sites /home/ubuuser/Documents
- Related Articles
- What is Python's OS Module
- How to retrieve Python module path?
- How to import a Python module given the full path?
- How to set Java Path in Linux OS?
- How to set Java Path in Mac OS?
- Fraction module in Python
- colorsys module in Python
- Import module in Python
- Keyboard module in Python
- struct module in Python
- Pygorithm module in Python
- Explain calendar module in python?
- The time Module in Python
- The calendar Module in Python
- The Threading Module in Python
