Hey,
i change to a new Fileserver and each movie in my Ant Movie Catalog should become a new URL.
Is there a way to mass change the URLs in AMC in one run like regexp or so?
Example:
if URL contains \\192.168.0.219 change it to \\192.168.0.218
Thank you
Daniel
Mass Changing of URLs
You can use a little script to do this:
Code: Select all
program ReplaceString;
const
oldValue = '192.168.0.219';
newValue = '192.168.0.218';
var
value: string;
begin
value := GetField(fieldURL);
value := StringReplace(value, oldValue, newValue);
SetField(fieldURL, value);
end.