Answers for "Python Script to check how many images are broken"

0

Python Script to check how many images are broken

statfile = os.stat(filename)
filesize = statfile.st_size
if filesize == 0:
  #manage here the 'faulty image' case
Posted by: Guest on February-13-2021

Code answers related to "Python Script to check how many images are broken"

Python Answers by Framework

Browse Popular Code Answers by Language