Create a File
Whenever the data is need to be stored, a file is used to store the data. File is a collection of stored information that are arranged in string, rows, columns and lines etc.
In this section, we will see how to create a file. This example takes the file name and text data for storing to the file.
For creating a new file File.createNewFile( ) method is used. This method returns a boolean value true if the file is created otherwise return false. If the mentioned file for the specified directory is already exist then the createNewFile() method returns the false otherwise the method creates the mentioned file and return true.
Lets see an example that checks the existence of a specified file.import java.io.*;
public class CreateFile1{
public static void main(String[] args) throws IOException{
File f;
f=new File("myfile.txt");
if(!f.exists()){
f.createNewFile();
System.out.println("New file \"myfile.txt\" has been created
to the current directory");
}
}
}
First, this program checks, the specified file "myfile.txt" is exist or not. if it does not exist then a new file is created with same name to the current location.
Create Directory
This program explains the process of creating all non-existent ancestor directories automatically. We will use the class File class to crate the directory.
The File class an abstract representation of file and directory pathnames. File class is used to interact with the files system.
Here is the code for creating directory and all non-existing ancestor directories:
import java.io.*;
class CreateDirectory
{
public static void main(String args[])
{
try{
String strDirectoy ="test";
String strManyDirectories="dir1/dir2/dir3";
//Create one directory
boolean success = (
new File(strDirectoy)).mkdir();
if(success){
System.out.println("Directory:"
+strDirectoy+"created");
}
//Create multiple directories
success =(newFile(strManyDirectories)).mkdirs();
if(success){
System.out.println("Directories:"
+strManyDirectories+"created");
}
}catch(Exception e){//Catch exception if any
System.err.println("Error:"+e.getMessage());
}
}
}
0 comments:
Post a Comment