I am attempting to work on blend files at work and at home, by using the same file location for the PBR textures. Unfortunately, find missing files command is not very comprehensive and cannot locate the texture images in the directory. I chose to use the C:\ drive on both machines rather than 'documents'.
Is there another way to do this? It has each image folder in many subdirectories away from the main. I have this python script but I don't know where blender is looking for the original if it is not right where it should look for the new.
%%
import bpy
images = bpy.data.images
for img in images :
if img.source == 'FILE' :
img.filepath = img.filepath.replace('\old_folder\','\new_folder\')
img.reload()
%%
