Python Forum
[SOLVED] Loop through directories and files one level down?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[SOLVED] Loop through directories and files one level down?
#1
Hello,

Google didn't help.

On Windows, I need to loop through the directories one level below the start directory, and through all the files in each of those sub-directories. Sub-directories might contain spaces.

for dir in os.listdir("."):
  print(dir)
  #os.chdir(dir) #FileNotFoundError: [WinError 2] The system cannot find the file specified
  #os.chdir("./" + dir) #FileNotFoundError: [WinError 2] The system cannot find the file specified
  os.chdir(f"./{dir}") #FileNotFoundError: [WinError 2] The system cannot find the file specified
Thank you.
Reply
#2
Did you check out os.walk?
https://www.w3schools.com/python/ref_os_walk.asp
I welcome all feedback.
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags
Download my project scripts


Reply
#3
Thanks for the tip.

This finally works:

import os
for item in os.listdir(ROOT):
  path = os.path.join(ROOT, item)
  if os.path.isdir(path):
    #print(item)
    os.chdir(path)
    print("==============",os.getcwd())
    for file in glob("*.html"):
      print(file)
Reply
#4
(Apr-28-2024, 02:09 PM)Winfried Wrote: This finally works:
You don't need to change the process' working directory for every subdirectory. A better code is
from pathlib import Path

for subdir in Path(ROOT).iterdir():
    if subdir.is_dir():
        for file in subdir.glob('*.html'):
            print(file)
« We can solve any problem by introducing an extra level of indirection »
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
Question [SOLVED] Right way to open files with different encodings? Winfried 3 3,789 Jan-18-2025, 02:19 PM
Last Post: Winfried
Question SOLVED: VS Code: Adding external directories to project? Calab 5 3,277 Aug-02-2024, 02:20 PM
Last Post: deanhystad
  rename same file names in different directories elnk 5 2,337 Jul-12-2024, 01:43 PM
Last Post: snippsat
  Loop through all files in a directory? Winfried 10 3,925 Apr-23-2024, 07:38 PM
Last Post: FortuneCoins
  Organization of project directories wotoko 3 1,446 Mar-02-2024, 03:34 PM
Last Post: Larz60+
  File loop curiously skipping files - FIXED mbk34 10 2,811 Feb-10-2024, 07:08 AM
Last Post: buran
Question [solved] compressing files with python. SpongeB0B 1 1,213 May-26-2023, 03:33 PM
Last Post: SpongeB0B
  [SOLVED] [loop] Exclude ranges in… range? Winfried 2 3,772 May-14-2023, 04:29 PM
Last Post: Winfried
  Loop through json file and reset values [SOLVED] AlphaInc 2 5,153 Apr-06-2023, 11:15 AM
Last Post: AlphaInc
  Help replacing word in Mutiple files. (SOLVED) mm309d 0 1,467 Mar-21-2023, 03:43 AM
Last Post: mm309d

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020