Python Forum
Compare folder A and subfolder B and display files that are in folder A but not in su
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Compare folder A and subfolder B and display files that are in folder A but not in su
#4
Try glob?

import glob
path1 = '/home/pedro/summer2021/**/'
path2 = '/home/pedro/summer2021/EC/*'
all_files1 = glob.glob(path1 + '*.odt')
all_files2 = glob.glob(path2 + '*.odt')
intersect = list(set(all_files1).intersection(set(all_files2))
exceptions = [f for f in all_files1 if not f in intersect]
len(exceptions) #26
len(all_files1) #33
len(intersection) #7
If memory is a problem you can use iglob()

all_files = glob.iglob(path + '*.odt')
iglob returns a generator, not a list.
Reply


Messages In This Thread
RE: Compare folder A and subfolder B and display files that are in folder A but not in su - by Pedroski55 - Jan-05-2024, 05:16 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Delete file with read-only permission, but write permission to parent folder cubei 6 22,169 Jun-01-2024, 07:22 AM
Last Post: Eleanorreo
  Deleting Windows temp folder Raysz 7 674 Apr-02-2024, 12:36 PM
Last Post: Raysz
  Help with creating folder and "virtual environment" AudunNilsen 1 316 Mar-21-2024, 04:41 AM
Last Post: deanhystad
Question How to add Python folder in Windows Registry ? Touktouk 1 367 Feb-20-2024, 01:04 PM
Last Post: DeaD_EyE
  Create dual folder on different path/drive based on the date agmoraojr 2 562 Jan-21-2024, 10:02 AM
Last Post: snippsat
  problem in import module from other folder akbarza 5 1,725 Sep-01-2023, 07:48 AM
Last Post: Gribouillis
  Reading a file name fron a folder on my desktop Fiona 4 1,051 Aug-23-2023, 11:11 AM
Last Post: Axel_Erfurt
  Rename files in a folder named using windows explorer hitoxman 3 839 Aug-02-2023, 04:08 PM
Last Post: deanhystad
  Rename all files in a folder hitoxman 9 1,678 Jun-30-2023, 12:19 AM
Last Post: Pedroski55
  how do I open two instances of visual studio code with the same folder? SuchUmami 3 1,043 Jun-26-2023, 09:40 AM
Last Post: snippsat

Forum Jump:

User Panel Messages

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