Heb wel een simpel python scriptje voor je.
Even het juiste Path aanpassen en hij renamed alle bestanden die beginnen met zo'n datum
#!/volume1/@appstore/python/bin/python2
import os, datetime
Path ="/volume1/video"
for File in os.listdir(Path):
NamePart, Ext = os.path.splitext(File)
try:
FileDate = datetime.datetime.strptime(NamePart[0:8], '%Y%m%d').strftime("%Y-%m-%d")
SplitList = NamePart.split('- ')
NewFile = os.path.join(Path,SplitList[2] + '.' + FileDate + Ext)
OldFile = os.path.join( Path,File)
try:
os.rename(OldFile,NewFile)
except:
print "Could not rename file: " + OldFile +" into: " + NewFile
except:
pass