getMacOSPath static method

String getMacOSPath()

Implementation

static String getMacOSPath() {
  String path = "";
  for (int i = 0; i < macosPaths.length; i++) {
    if (Directory(macosPaths[i]).existsSync()) {
	return macosPaths[i];
    }
  }
  throw ("Csound path not found");
}