Hello How would you go about testing to see if 2 folders contain the same files, and then to be able to manipulate ONLY the file which is new.
A = listdir('C:/')
B = listdir('D:/')
If A==B
...
I know this could be used to test if directories are different but is there a better way? And if A and B are the same, except B has one more file than A, how do i use just the new file?
Thank you, i hope my question isnt confusing