To determine if an abstract pathname is a directory we can use the File.isDirectory()
method. Here is an example code.
package org.kodejava.io;
import java.io.File;
public class IsDirectoryExample {
public static void main(String[] args) {
// Creates a instance of File.
File file = new File("C:/Users/wsaryada");
// Check if the abstract pathname is a directory by calling
// isDirectory() method of the File class.
if (file.isDirectory()) {
System.out.println("This file is a directory.");
} else {
System.out.println("This is just an ordinary file.");
}
}
}
Latest posts by Wayan (see all)
- How do I create a string of repeated characters? - September 1, 2023
- How do I convert datetime string with optional part to a date object? - August 28, 2023
- How do I split large excel file into multiple smaller files? - April 15, 2023