Python Forum
Failing to get Stat for a Directory
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Failing to get Stat for a Directory
#2
try this
from pathlib import Path

# set starting directory
path = Path("C:\\02")

dirs = [x for x in path.iterdir() if x.is_dir()]
for dir in dirs:
    fcount = len([x for x in dir.iterdir() if x.is_file()])
    print(f"dir: {dir.name} contains {fcount} files.")
tester_V likes this post
Reply


Messages In This Thread
Failing to get Stat for a Directory - by tester_V - Jul-20-2021, 01:50 AM
RE: Failing to get Stat for a Directory - by Larz60+ - Jul-20-2021, 02:28 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Failing to connect by 'net use' tester_V 1 315 Apr-20-2024, 06:31 AM
Last Post: tester_V
  Failing regex tester_V 3 1,285 Aug-16-2022, 03:53 PM
Last Post: deanhystad
  Unknown Error with Random Stat Assigner FC8 6 2,434 Dec-06-2021, 01:56 PM
Last Post: FC8
  Failing to connect to a host with WMI tester_V 6 4,555 Aug-10-2021, 06:25 PM
Last Post: tester_V
  Failing to Zip files tester_V 4 2,261 Dec-01-2020, 07:28 AM
Last Post: tester_V
  Python 3.8 on mac failing to start sgandon 0 3,046 Jan-14-2020, 10:58 AM
Last Post: sgandon
  trying to install oandapy and failing ErnestTBass 0 1,995 Feb-24-2019, 06:13 PM
Last Post: ErnestTBass
  Pyinstaller failing JP_ROMANO 2 4,164 Jan-16-2019, 06:07 PM
Last Post: JP_ROMANO
  Why is my for loop failing? microphone_head 4 3,064 Sep-11-2018, 01:21 PM
Last Post: microphone_head

Forum Jump:

User Panel Messages

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