@ -2,6 +2,6 @@ FluidFilesPath {
*new {
arg fileName;
fileName = fileName ? "";
^("%/../AudioFiles/".format(File.realpath(FluidDataSet.class.filenameSymbol).dirname) +/+ fileName);
^("%/../AudioFiles".format(File.realpath(FluidDataSet.class.filenameSymbol).dirname) +/+ fileName);
}
@ -1,6 +1,7 @@
(
// should all return the same path:
(FluidFilesPath()++"Nicol-LoopE-M.wav").postln;
(FluidFilesPath()+/+"Nicol-LoopE-M.wav").postln;
FluidFilesPath("Nicol-LoopE-M.wav").postln;
FluidFilesPath("/Nicol-LoopE-M.wav").postln;
)