Thursday, July 11, 2024
HomeLanguagesJavaFileSystem isOpen() method in Java with Examples

FileSystem isOpen() method in Java with Examples

The isOpen() method of a FileSystem class is used to return true if file system is open. This method is very helpful to know filesystem is open or not. File systems created by the default provider are always open.

Syntax:

public abstract boolean isOpen()

Parameters: This method accepts nothing.

Return value: This method returns true if, and only if, this file system is open.

Below programs illustrate the isOpen() method:
Program 1:




// Java program to demonstrate
// FileSystem.isOpen() method
  
import java.nio.file.FileSystem;
import java.nio.file.Path;
import java.nio.file.Paths;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // create the object of Path
        Path path
            = Paths.get(
                "C:\\Movies\\document.txt");
  
        // get FileSystem object
        FileSystem fs = path.getFileSystem();
  
        // apply isOpen() methods
        boolean answer = fs.isOpen();
  
        // print
        System.out.println("isOpen: " + answer);
    }
}


Output:

Program 2:




// Java program to demonstrate
// FileSystem.isOpen() method
  
import java.nio.file.FileSystem;
import java.nio.file.Path;
import java.nio.file.Paths;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // create the object of Path
        Path path
            = Paths.get(
                "E:// Tutorials// file.txt");
  
        // get FileSystem object
        FileSystem fs = path.getFileSystem();
  
        // apply isOpen() methods
        boolean answer = fs.isOpen();
  
        // print
        System.out.println(fs + " is Open: " + answer);
    }
}


Last Updated :
03 Dec, 2019
Like Article
Save Article
Similar Reads
Related Tutorials
Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments