Java Is Unix isUnix()

Here you can find the source of isUnix()

Description

is Unix

License

Open Source License

Declaration

public static boolean isUnix() 

Method Source Code


//package com.java2s;
import java.io.File;

public class Main {
    public static boolean isUnix() {
        return "/".equals(File.separator);
    }// w  ww .  j  a  v a 2  s. co  m
}

Related

  1. isOsUnix()
  2. isSystemUnix()
  3. isUnix()
  4. isUnix()
  5. isUnixCompressFile(File file)