findPath static method

String findPath()

Implementation

static String findPath() {
  if (Platform.isLinux) {
    return getLinuxPath();
  } else if (Platform.isWindows) {
    return getWindowsPath();
  } else if (Platform.isMacOS) {
    return getMacOSPath();
  }
  throw ("Csound path not found");
}