Last modified: Mar 19, 2025 By Alexander Williams

Python Pathlib is_dir() Explained

Python's pathlib module simplifies file and directory path manipulation. One of its useful methods is is_dir(). This method checks if a path points to a directory.

In this article, we'll explore how to use is_dir() effectively. We'll also provide examples to help you understand its usage.

What is pathlib.is_dir()?

The is_dir() method is part of the pathlib.Path class. It returns True if the path is a directory. Otherwise, it returns False.

This method is helpful when you need to verify if a path is a directory before performing operations like reading files or listing contents.

How to Use pathlib.is_dir()

To use is_dir(), you first need to create a Path object. Then, call the method on the object. Here's a simple example:


    from pathlib import Path

    # Create a Path object
    path = Path('/path/to/your/directory')

    # Check if the path is a directory
    if path.is_dir():
        print("This is a directory.")
    else:
        print("This is not a directory.")
    

In this example, replace /path/to/your/directory with the actual path you want to check. The code will print whether the path is a directory or not.

Example with Output

Let's look at a practical example. Suppose you have a directory structure like this:


    /home/user
    ├── documents
    └── file.txt
    

Here's how you can use is_dir() to check if /home/user/documents is a directory:


    from pathlib import Path

    # Create a Path object
    path = Path('/home/user/documents')

    # Check if the path is a directory
    if path.is_dir():
        print(f"{path} is a directory.")
    else:
        print(f"{path} is not a directory.")
    

Output:


    /home/user/documents is a directory.
    

This confirms that /home/user/documents is indeed a directory.

Combining with Other Methods

You can combine is_dir() with other pathlib methods for more complex operations. For example, you can use it with exists() to first check if the path exists.

Learn more about checking file existence with Python Pathlib.exists().


    from pathlib import Path

    path = Path('/home/user/documents')

    if path.exists() and path.is_dir():
        print(f"{path} exists and is a directory.")
    else:
        print(f"{path} does not exist or is not a directory.")
    

This ensures that the path exists before checking if it's a directory.

Handling Errors

If the path does not exist, is_dir() will return False. To avoid confusion, always check if the path exists first.

For more advanced path manipulations, consider using Python Pathlib Resolve to simplify file paths.

Conclusion

The is_dir() method is a powerful tool in Python's pathlib module. It helps you verify if a path is a directory, making your file operations safer and more efficient.

By combining it with other methods like exists(), you can create robust file handling scripts. For more tips, check out our guide on mastering Python Pathlib Joinpath.