FileSystem.isOpen() has the following syntax.
public abstract boolean isOpen()
In the following code shows how to use FileSystem.isOpen() method.
/*from w ww .j av a2 s . co m*/ import java.io.IOException; import java.nio.file.FileSystem; import java.nio.file.FileSystems; public class Main { public static void main(String[] args) throws IOException { FileSystem fileSystem = FileSystems.getDefault(); System.out.println(fileSystem.isOpen()); } }
The code above generates the following result.