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 [...]
Entries Tagged as 'java.io'
Compare two files using java
June 24th, 2008 · No Comments
Tags: java.io
Create a temp file using java
June 24th, 2008 · No Comments
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
June 24th, 2008 · No Comments
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 [...]
Tags: java.io
Finds out total usable space available in a partition using java
June 24th, 2008 · No Comments
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 [...]
Tags: java.io
Finds out total free space available in a partition using java
June 24th, 2008 · No Comments
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 [...]
Tags: java.io
Finds out total space available in a partition using java
June 24th, 2008 · No Comments
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 = [...]
Tags: java.io
Lists all the drives present in Windows using java
June 24th, 2008 · No Comments
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 [...]
Tags: java.io
Checks whether a file or directory has executable permission or not.
June 24th, 2008 · No Comments
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 = [...]
Tags: java.io
Change file or directory permission only to owner using java
June 24th, 2008 · No Comments
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 [...]
Tags: java.io
Change file or directory permission using java
June 24th, 2008 · No Comments
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 [...]
Tags: java.io
