Java Utililty Methods Is Windows

List of utility methods to do Is Windows

Description

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

Method

booleanisWindowsInstall()
is Windows Install
File genPlayExe = new File("GenPlay.exe");
return isWindowsOS() && genPlayExe.exists();
booleanisWinFileSystem()
Determines if Windows file system is in use.
return SYSTEM_SEPARATOR == WINDOWS_SEPARATOR;