Java FileSystem.isOpen()
Syntax
FileSystem.isOpen() has the following syntax.
public abstract boolean isOpen()
Example
In the following code shows how to use FileSystem.isOpen() method.
//w w w.j ava2 s . c om
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.