Java Utililty Methods Is Unix

List of utility methods to do Is Unix

Description

The list of methods to do Is Unix are organized into topic(s).

Method

booleanisOsUnix()
Test for Unix (to include MacOS), vice Windows.
return File.separator.equals(FORWARD_SLASH);
booleanisSystemUnix()
is System Unix
return SYS_SEPARATOR_CHAR == UNX_SEPARATOR_CHAR;
booleanisUnix()
is Unix
return "/".equals(File.separator);
booleanisUnix()
is Unix
return (File.separatorChar == '/');
booleanisUnix()
is Unix
return (File.separatorChar == '/') || isMacOsX();
booleanisUnixCompressFile(File file)
Returns true if the input file is a .Z file.
return hasCaseInsensitiveSuffix(file, z_suffix);