I have Ten thousand files in one folder. The file's names are numerically sorted. I am trying to move the files. Some files are already moved to a new folder. I have written the code to move the files but due to some files already being moved to a new folder, the code stops when the number hits the number of the file which has already been moved. I tried using try and catch the exception but it's not working. I would like the code to skip this error and continue moving the files.
This is what I have tired
import os, shutil
path = "I:\\"
moveto = "I:\\"
i = 1
j = 1
try:
while True:
f = "{0}.{1}".format(i,j)
filesrc = f + ".jpg"
src = path+filesrc
dst = moveto+filesrc
shutil.move(src,dst)
j += 1
if j > 6:
i += 1
j = 1
if i > 1500:
break
except for OSError as e:
pass
iandjin your code is extremely unclear