Forget win32com. Instead,
- create a destination folder
- loop over zipx archives; for each one:
- create a temp folder using Python's tempfile module
- use the subprocess module to run your unzip utility (that handles zipx format) on the zipx archive, with command line option to extract to the temp folder created
- use the shutil module to copy each unzipped file in that folder to the common destination folder created in first step, if file meets the condition. For file size, use Path.stat().st_size or os.path.get_size().
- erase temp folder
So each archive gets unzipped to a different temp folder, but all extracted files get moved to one common folder. Alternately, you could use the same temp folder for all archives, but empty the folder at end of each iteration, and delete the temp folder at end of script.
- create a destination folder
- create a temp archive extraction folder using Python's tempfile module
- loop over zipx archives; for each one:
- use the subprocess module to run your unzip utility (that handles zipx format) on the zipx archive, with command line option to extract to the temp folder created
- use the shutil module to copy each unzipped file in that folder to the common destination folder created in first step, if file meets the condition. For file size, use Path.stat().st_size or os.path.get_size().
- erase contents of temp folder
- erase temp folder