I was using a previous string
and posted on there for help but have not got any responses. I am trying to get my revit local file to reload all images from a central file location. I used someone else’s script (arch+lab) from this location
http://dynamobim.org/forums/topic/is-it-possible/
the script worked fine for a local file, but once I made it a central file(network path), I cant reload the images from a local file (local path)
so my fix was to add in the /W Document.CentralPath to the string and now it only reloads one image file (and it is not the first image (its line 12 from the directory list) For some reason I think the IP address for the directory path is messing it up in the code string.
#Isolating filenames
fileNames =
for path in filePaths:
tempName = path.split(’\’)
fileNames.append(tempName[len(tempName)-1])
I am stumped and any help would be greatly appreciated.
Thanks in advance