We can make use of the glob module to list all files from a folder using Python.
Example:
import glob
folder_path = "/data/2023"
file_paths = glob.glob(folder_path + "/*")
for file_path in file_paths:
print(file_path)
Output:
/data/2023/report.xlsx
/data/2023/corrections.txt
/data/2023/2023_data.csv
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Python,
- Python List of Lists with Examples
- Fix: ERROR: Could not find a version that satisfies the requirement tkinter (from versions: none) ERROR: No matching distribution found for tkinter
- How to Convert Python Notebook .ipynb (JSON) to Executable .py Module
- ModuleNotFoundError: No module named qdarkstyle.colorsystem [Python]
- Python: Pandas Merge Indicator (Left, Right and Both) Example
- Fix: EOFError Exception in Python
- How to URL Decode a Query String in Python
- How to take user input from the console in a Python program
- Compare two lists in Python and return matches
- How to change the Python Default version
- Fix: KeyError: exception in Python
- How to get the Execution Time of A Python Program
- Fix: ModuleNotFoundError: No module named boto3 [Python]
- How to get unique values from a list in Python
- How to pip install Python Modules in VSCode
- Python: Fix - TypeError: NoneType object is not iterable
- How to delete a file using Python code example
- How to create a dictionary comprehension in Python
- Python: Get just the filename without extension using Path
- How to comment out a block of code in Python
- How to add two float numbers in Python
- Python: How to POST Json Data with HTTP Request
- Get MD5 Hash as Checksum of a String in Python
- Python - Convert float to String
- How to Parse XML String in Python
More Posts:
- Office.com downloading zero byte file name prelanding on Safari browser - Windows
- Fix: SyntaxError: ( was never closed [Python] - Java
- How to Install Python Modules in VS Code - Python
- How to install AWS Toolkit for Visual Studio Code - AWS
- You're not on Teams yet, but you can set it up for your organization. [Microsoft Teams Login Error] - Microsoft
- Teams - You're offline. Messages you send while offline will be sent when you're back online - Teams
- Python: Append A List at the Start of Another List - Python
- How to make use of SQLite Module in Python? - Python