3 loadPath { arg warnIfNotFound=true;
5 path = this.standardizePath;
8 obj = thisProcess.interpreter.executeFile(path);
9 //obj.didLoadFromPath(this);
11 ("In file: " + this).postln;
16 warn("String:loadPath file not found " + this + path);
19 if(obj.isNil and: warnIfNotFound, {
20 warn("String:loadPath found nil, empty contents or parse error in " + path);
22 //^ObjectNotFound.new(path)