Relating to a previous question of mine...
win32file.ReadDirectoryChangesW doesn't find all moved files (Relative code is in there)
Is there a way to actually wait for a notification that all drag and dropped files have been moved or copied? I am currently utilizing win32file.WaitForSingleObject(*args, **kwargs)
to attain each individually dropped file. This is not beneficial when I need to detect a wide range of files at varying amounts (I need to detect how many files had been dropped).
I have tried utilizing win32fil.WaitForMultiplObjects(*args, **kwargs)
, but does not seem to provide the actual amount (I cannot seem to figure out how to read the total that had been transferred or read that anything was moved in totality, it continues to only read each one as it moves). I also cannot determine when the detection ends (when the files have finished moving, totally). The result of what I want, is to detect all of them together, to inevitably create a queue (file management). For example, when you move 10 files from one directory to another, a progress window pops up alerting you of how many are being moved (10). I need to detect the amount in Python, but only AFTER the files have moved.
Thank you, Sir James