delimiterForPATH property

String delimiterForPATH

returns the delimiter used by the PATH enviorment variable.

On linix it is ':' ond windows it is ';'

NOTE do NOT confuses this with the file system path root!!!

Implementation

String get delimiterForPATH {
  var separator = ':';

  if (Settings().isWindows) {
    separator = ';';
  }
  return separator;
}