Week 4 :
a) Write a Java
program that reads a file name from the user, then displays information about
whether the file exists, whether the file is readable, whether the file is
writable, the type of file and the length of the file in bytes.
import java.io.*;
class FileDemo
{
public static void main(String args[])
{
File f1=new
File("/java/copyright","Bharath.java");
System.out.println("file
name"+f1.getName());
System.out.println("path"+f1.getPath());
System.out.println("parent"+f1.getParent());
System.out.println(f1.exists());
System.out.println(f1.canRead());
System.out.println(f1.canWrite());
System.out.println(f1.isDirectory());
System.out.println(f1.isFile());
System.out.println(f1.lastModified());
System.out.println(f1.length());
System.out.println(f1.delete());
}
}
No comments:
Post a Comment