How to Get Python List all Files in Directory with Extension?

How to Get Python List all Files in Directory with Extension?

To get the list of file names in the given folder or directory, we can use different approaches. The easiest way of doing it, use the Python os module.

The Python os module is very useful and it has a lot of features for accessing file systems and other operating systems details.

os.listdir()

Python os module has a method called listdir(). It returns the Pyhton list of all the files in the directory. The syntax for this method is pretty simple and you can get it from the below code.

Irrespective of the Operating System like Windows, MacOS and Linux (Ubuntu, RedHat, and other distros); this method work flawlessly

import os

list_files = os.listdir()
print(list_files)

Note: Make sure your Python script is saved in the same directory. You can also specify the directory name in the listdir() method.

The above code prints the Python list which includes all the file names from the current folder or directory with extension. It also includes subdirectories.

You can also print the file names one by one as a string using Python for-loop.

import os

list_files = os.listdir()
for file_name in list_files:
	print(file_name)

Once you get the list of file names, you can perform different file operations like reading, writing and deleting files.

You can use the Python split() method to get the extension of the file. Split the file_name name over “.” Like,

ext = file_name.split(".")[1]

This is a very useful yet simple automation trick to get the Python list all files in directory with extension. You will find it handy. Any question? Let me know in the comment. Thanks!

Leave a Reply

Your email address will not be published. Required fields are marked *