Python Traverse Folders: Complete os.walk() Guide

In Python, the os module can be used to traverse folders.

Here is a simple sample code demonstrating how to iterate through all files and subfolders in a specified folder.

import os

def list_files_in_folder(folder):
    for root, dirs, files in os.walk(folder):
        for file in files:
            print(os.path.join(root, file))

# 指定要遍历的文件夹路径
folder_path = "path/to/your/folder"

# 调用函数来遍历文件夹
list_files_in_folder(folder_path)

In the example above, the os.walk() function is used to traverse all files and subfolders within a specified folder. By iterating through the files list, you can print the full path of each file. You can perform different operations on the files as needed.

bannerAds