File isFile() method in Java with Examples Last Updated : 28 Jan, 2019 Comments Improve Suggest changes Like Article Like Report The isFile() function is a part of File class in Java. This function determines whether the is a file or Directory denoted by the abstract filename is File or not. The function returns true if the abstract file path is File else returns false. Function signature: public boolean isFile() Syntax: file.isFile() Parameters: This method does not accept any parameter. Return Type The function returns boolean data type representing whether the abstract file path is file or not Exception: This method throws Security Exception if the write access to the file is denied Below programs illustrates the use of isFile() function: Example 1: The file "F:\\program.txt" is a existing file in F: directory. Java // Java program to demonstrate // isFile() method of File Class import java.io.*; public class solution { public static void main(String args[]) { // Get the file File f = new File("F:\\program.txt"); // Check if the specified file // is File or not if (f.isFile()) System.out.println("File"); else System.out.println("Not a File"); } } Output: File Example 2: The file "F:\\program" is a directory Java // Java program to demonstrate // isFile() method of File Class import java.io.*; public class solution { public static void main(String args[]) { // Get the file File f = new File("F:\\program"); // Check if the specified file // is File or not if (f.isFile()) System.out.println("File"); else System.out.println("Not a File"); } } Output: Not a File Note: The programs might not run in an online IDE. Please use an offline IDE and set the path of the file. Comment More infoAdvertise with us Next Article File isFile() method in Java with Examples A andrew1234 Follow Improve Article Tags : Java Java-Functions java-file-handling Java-IO package Java-File Class +1 More Practice Tags : Java Similar Reads File isHidden() method in Java with Examples The isHidden() function is a part of File class in Java . This function determines whether the is a file or Directory denoted by the abstract filename is Hidden or not.The function returns true if the abstract file path is Hidden else return false. Function signature: public boolean isHidden() Synta 2 min read File isDirectory() method in Java with Examples The isDirectory() function is a part of File class in Java . This function determines whether the is a file or directory denoted by the abstract filename is Directory or not.The function returns true if the abstract file path is Directory else returns false. Function signature: public boolean isDire 2 min read Files copy() Method in Java with Examples The copy() method of java.nio.file.Files Class is used to copy bytes from a file to I/O streams or from I/O streams to a file. I/O Stream means an input source or output destination representing different types of sources e.g. disk files. Methods: Based on the type of arguments passed, the Files cla 5 min read Files size() method in Java with Examples size() method of java.nio.file.Files help us to get the size of a file (in bytes). This method returns the file size, in bytes by taking the path of the file as a parameter. The size may differ from the actual size on the file system due to compression, support for sparse files, or other reasons. Th 2 min read File length() method in Java with Examples The length() function is a part of File class in Java . This function returns the length of the file denoted by the this abstract pathname was length.The function returns long value which represents the number of bytes else returns 0L if the file does not exists or if an exception occurs. Function s 2 min read Like