Compare two files using java
The compareTo method of File class helps us to create a temporary file. This method returns an integer. If the value of the integer is greater than zero, the file will be greater than the argument, if the file is less than zero, the file will be less than the argument and a value of zero means both the files are equal.
import java.io.File;
/**
* File class examples.
*
*/
public class FileExample {
public static void main(String[] args) {
// Create file object representing the source file/directory
File file = new File("d:\\temp\\test.txt");
// Create another file for comparison.
File cFile = new File("d:\\temp\\Copy of test.txtt");
// Compare two files.
int value = file.compareTo(cFile);
System.out.println("File comparison result : "+value);
}
}
Tags: java.io
Create a temp file using java
The createTempFile method of File class helps us to create a temporary file.
import java.io.File;
import java.io.IOException;
/**
* File class examples.
*
*/
public class FileExample {
public static void main(String[] args) throws IOException{
// Create file object representing the source file/directory
File file = new File("d:\\temp");
// Create the temporary file.
File tempFile = File.createTempFile("test", ".tmp",file);
}
}
Tags: java.io
Finds out total used space in a partition using java
In Java we can find the total used space of any drive or partition using getTotalSpace and getFreeSpace methods.
import java.io.File;
/**
* File class examples.
*
*/
public class FileExample {
public static void main(String[] args){
// Create file object representing the source file/directory
File file = new File("d:\\temp\\test.txt");
// Get the total space available in current drive
long totalSpace = file.getTotalSpace();
// Get the total free space available in current partition
long freeSpace = file.getFreeSpace();
// Finds the total used space
long value = totalSpace - freeSpace;
// Convert it to GigaBytes
double valueGB = (double) value / 1024 / 1024 / 1024;
System.out.println("Total used space in the current partition is "+valueGB);
}
}
Tags: java.io
Finds out total usable space available in a partition using java
The getUsableSpace method of File class can be used for getting the total usable space available in a partition or drive using java.
import java.io.File;
/**
* File class examples.
*
*/
public class FileExample {
public static void main(String[] args){
// Create file object representing the source file/directory
File file = new File("d:\\temp\\test.txt");
// Get the total usable space available in current drive
long value = file.getUsableSpace();
// Convert it to GigaBytes
double valueGB = (double) value / 1024 / 1024 / 1024;
System.out.println("Total free space available in the current partition is "+valueGB);
}
}
Tags: java.io
Finds out total free space available in a partition using java
The getFreeSpace method of File class can be used for getting the total free space available in a partition or drive using java.
import java.io.File;
/**
* File class examples.
*
*/
public class FileExample {
public static void main(String[] args){
// Create file object representing the source file/directory
File file = new File("d:\\temp\\test.txt");
// Get the total free space available in current drive
long value = file.getFreeSpace();
// Convert it to GigaBytes
double valueGB = (double) value / 1024 / 1024 / 1024;
System.out.println("Total free space available in the current partition is "+valueGB);
}
}
Tags: java.io
Finds out total space available in a partition using java
The getTotalSpace method of File class can be used for getting the total space available in a partition or drive using java.
import java.io.File;
/**
* File class examples.
*
*/
public class FileExample {
public static void main(String[] args){
// Create file object representing the source file/directory
File file = new File("d:\\temp\\test.txt");
// Get the total space available in current drive
long value = file.getTotalSpace();
// Convert it to GigaBytes
double valueGB = (double) value / 1024 / 1024 / 1024;
System.out.println("Total space available in the current partition is "+valueGB);
}
}
Tags: java.io
Lists all the drives present in Windows using java
The listRoots method of File class is used for finding out all the drives available in Windows.
import java.io.File;
/**
* File class examples.
*
*/
public class FileExample {
public static void main(String[] args){
// Get all the drives
File drives[] = File.listRoots();
// Loop through the drive list and display the drives.
for (int index = 0; index < drives.length; index++) {
System.out.println(drives[index]);
}
}
}
Note: Since Linux does not have any drives concept, the output of the above program in Linux operating system will be "/"
Tags: java.io
Checks whether a file or directory has executable permission or not.
The canExecute method of File class can be used for finding out whether the given file has executable permission or not.
import java.io.File;
/**
* File class examples.
*
*/
public class FileExample {
public static void main(String[] args){
// Create file object representing the source file/directory
File file = new File("d:\\temp");
// Check whether the file has executable permission or not.
boolean value = file.canExecute();
System.out.println("File executable permission status : "+value);
}
}
Tags: java.io
Change file or directory permission only to owner using java
The setReadOnly, setWritable,setReadable and setExecutable methods of the file class is used for changing the permissions on a file only to owner of the file or directory.
import java.io.File;
/**
* File class examples.
*
* The class sets read only, writable, executable and readable permissions
* for a file or directory. This permissions will be applied to the owner of
* the file or directory only. Not everyone will get the permissions.
*/
public class FileExample {
public static void main(String[] args){
// Create file object representing the source file/directory
File file = new File("d:\\temp\\test.txt");
// Given below are the different file permissions
// operations that can be performed on java.
// Give executable permission to a file or directory
file.setExecutable(true, true);
// Set read only property to a file or a directory
file.setReadOnly();
// Give write permission to the file
file.setWritable(true, true);
// Make the file or directory as readable
file.setReadable(true, true);
}
}
Tags: java.io
Change file or directory permission using java
The setReadOnly, setWritable,setReadable and setExecutable methods of the file class is used for changing the permissions on a file.
import java.io.File;
/**
* File class examples.
* Performs different permission operations on a file or directory.
*/
public class FileExample {
public static void main(String[] args){
// Create file object representing the source file/directory
File file = new File("d:\\temp\\test.txt");
// Given below are the different file permissions
// operations that can be performed on java.
// Make the file or directory as executable
file.setExecutable(true);
// Make the file or directory as read only
file.setReadOnly();
// Make the file as writable.
file.setWritable(true);
// Give read permission to the file or directory
file.setReadable(true);
}
}
Tags: java.io