You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The program currently overwrites images with the same name. Regards "Move and moveall" from sortimages_multiview.py. Example: "test.png" in source and "test.png" in dest, the one in source will overwrite the one in dest, deleting it. Just a fair warning for any users.
We should check whether an image with that name already exists in destination before moving. We could do temp = os.path.join(destpath, self.name.get()) if os.path.exists(temp): return ("")
before me move the picture to cancel the move.
The text was updated successfully, but these errors were encountered:
The program currently overwrites images with the same name. Regards "Move and moveall" from sortimages_multiview.py. Example: "test.png" in source and "test.png" in dest, the one in source will overwrite the one in dest, deleting it. Just a fair warning for any users.
We should check whether an image with that name already exists in destination before moving. We could do
temp = os.path.join(destpath, self.name.get()) if os.path.exists(temp): return ("")
before me move the picture to cancel the move.
The text was updated successfully, but these errors were encountered: