getLinuxPath static method
Implementation
static String getLinuxPath() {
const String name = "libcsound64.so";
for (int i = 0; i < linuxPaths.length; i++) {
String path = Path.join(linuxPaths[i], name);
if (File(path).existsSync()) {
return path;
}
}
throw ("Csound path not found");
}