Python script:
import os
rootdir = 'C:/'
for subdir, dirs, files in os.walk(rootdir):
for file in files:
ext=os.path.splitext(file)[-1].lower()
if(ext==".jpg" or ext==".png" or ext==".jpeg" or ext==".svg"):
print(os.path.join(subdir, file))
Corrections:
In the begining of the video i didnt mean to say "Nowadays" i wanted to say "Any of the picture format like...etc.